/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: #1f2937;
}

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Section */
.header-section {
  background: linear-gradient(to bottom, #e0f2fe, #f0f9ff);
  padding: 3rem 1rem;
}

.header-container {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Gift Card Image */
.gift-card-image {
  width: 12rem;
  height: auto;
  margin-bottom: 2rem;
}

/* Headline */
.headline {
  color: #1d4ed8;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Steps Card */
.steps-card {
  background-color: #ffffff;
  border: 2px solid #1e40af;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  width: 100%;
}

/* Steps List */
.steps-list {
  list-style: none;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item span {
  color: #111827;
  font-weight: 500;
}

/* Check Icon */
.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  flex-shrink: 0;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  background-color: #1e40af;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem;
  border-radius: 9999px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #1e3a8a;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  margin: 1rem;
  padding: 1.5rem;
  border-radius: 0.25rem;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 1.5rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* Footer */
.footer {
  background-color: #e5e7eb;
  padding: 1rem;
  margin-top: auto;
}

.footer p {
  text-align: center;
  color: #374151;
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .header-section {
    padding: 2rem 1rem;
  }

  .gift-card-image {
    width: 10rem;
  }

  .headline {
    font-size: 1rem;
  }
}
