.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 40px;
  padding: 0 2rem;
}

.section-description {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  margin: 0 auto 3rem;
  text-align: center;
  max-width: 800px;
}

.voucher-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.vouchers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.voucher-card {
  background-color: var(--color-bright);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.voucher-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.voucher-header {
  background-color: var(--color-primary);
  color: var(--color-bright);
  padding: 1.5rem;
  text-align: center;
}

.voucher-amount {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.voucher-title {
  font-size: 1.2rem;
  font-weight: 300;
}

.voucher-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.voucher-description {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.voucher-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bright);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.voucher-button:hover {
  background-color: var(--color-secondary);
}

.how-it-works {
  background-color: var(--color-background);
  padding: 2rem 1rem;
  width: 100%;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.step-number {
  background-color: var(--color-primary);
  color: var(--color-bright);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.step-description {
  color: var(--color-text-light);
  font-weight: 300;
}

@media (min-width: 992px) {
  .vouchers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .step {
    margin-bottom: 0;
  }
}

.faq {
  margin: 40px auto 40px;

  .faq-container {
    margin-top: 2rem;
    max-width: 800px;
    margin-inline: auto;
  }

  .faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: var(--color-bright);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.25rem;
    transition: background-color 0.3s ease;

    &:hover {
      background-color: rgba(196, 172, 153, 0.1);
    }

    h3 {
      margin-bottom: 0;
      font-size: 1.2rem;
      font-weight: 500;
      padding: 0.5rem;
    }

    .faq-arrow {
      transition: transform 0.3s ease;
      color: var(--color-primary);
    }

    .faq-arrow.rotate {
      transform: rotate(180deg);
    }
  }

  .faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;

    p {
      margin: 0;
      padding: 1rem;
      border-top: 1px solid var(--color-border);
    }
  }

  .faq-answer.expanded {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
  }
}
