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

:root {
  --primary: #00704a;
  --primary-hover: #005a3c;
  --background: #f5f5f5;
  --card: #ffffff;
  --foreground: #1e3932;
  --muted-foreground: #5c7c6f;
  --border: #e5e5e5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Hero Section */
.hero-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.hero-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--primary);
}

.gift-cards-container {
  background: #e8f4f8;
  border-radius: 1rem;
  padding: 1.5rem;
}

.gift-cards-img {
  display: block;
  margin: 0 auto;
  height: 13rem;
  object-fit: contain;
}

/* Steps Section */
.steps-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.steps-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.steps-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.steps-heading {
  font-size: 1.125rem;
  font-weight: 700;
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border);
}

.steps-list {
  list-style: none;
}

.steps-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-number {
  font-weight: 700;
  color: var(--primary);
}

/* CTA Button */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--primary);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: var(--primary-hover);
}

.cta-button .icon {
  font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
  margin-top: 1rem;
}

.faq-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  text-align: center;
}

.faq-question .chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.faq-question.active .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  text-align: center;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-answer.show {
  display: block;
}

/* Rating Section */
.rating-section {
  margin-top: 2rem;
  background: #e8e8e8;
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.rating-text {
  font-weight: 500;
  color: var(--primary);
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.star svg {
  width: 1rem;
  height: 1rem;
  fill: white;
}

.rating-score {
  color: var(--muted-foreground);
}

.disclaimer {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted-foreground);
}
