* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", "Roboto", sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fafafa;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.bold {
  font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f);
  color: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.section {
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a2a6c;
}

.section p {
  margin-bottom: 1rem;
}

ul {
  margin-bottom: 1rem;
}

.section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--neutral-300);
}

th {
  background-color: var(--neutral-200);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  color: black;
  background-color: var(--blue-400);
  box-shadow: 0 0 3px 1px var(--blue-600), inset 0 0 3px 1px white;
}

.btn-primary:hover {
  color: white;
  background-color: var(--blue-600);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.5), inset 0 0 3px 1px white;
}

.btn-secondary {
  color: black;
  background-color: var(--yellow-400);
  box-shadow: 0 0 3px 1px var(--orange-400), inset 0 0 3px 1px white;
}

.btn-secondary:hover {
  color: white;
  background-color: var(--orange-400);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.5), inset 0 0 3px 1px white;
}

form {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

.btn-secondary:hover {
  color: white;
  background-color: var(--orange-400);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.5), inset 0 0 3px 1px white;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.normal-price {
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 2rem;
  margin: 1rem;
  font-size: 2rem;
  background-color: var(--neutral-200);
  border-radius: 10px;
  font-family: "Montserrat";
  color: red;
  font-weight: 700;
  text-decoration: line-through;
}

.good-price {
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem 2rem;
  margin: 1rem;
  background-color: var(--lime-400);
  border-radius: 10px;
  font-size: 2rem;
  font-family: "Montserrat";
  color: white;
  font-weight: 700;
}

.ps {
  color: #666;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #ddd;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;

  img {
    flex: 1 1 140px;
    max-width: 200px;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    object-fit: cover;
  }

  div {
    flex: 1 1 200px;
  }
}

.column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

footer {
  background-color: var(--neutral-200);

  a {
    text-decoration: none;    
  }

  table {
    td {
      border: none;
      vertical-align: top;
    }

    td:nth-child(1) {
      text-align: center;
      padding: 0;
      width: 2rem;
    }

    td:nth-child(2) {
      text-align: left;
      padding: 0;
    }
  }

  span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (min-width: 600px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    font-size: 1.25rem;
  }
}
