/* Root Variables */
:root {
  --background: #f3f4f6;
  --foreground: #1f2937;
  --card: #f3f4f6;
  --card-foreground: #1f2937;
  --primary: #000000;
  --primary-foreground: #ffffff;
  --secondary: #f3f4f6;
  --secondary-foreground: #1f2937;
  --muted: #e5e7eb;
  --muted-foreground: #6b7280;
  --accent: #dc2626;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
}

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

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Header Banner */
.header-banner {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .header-banner {
    font-size: 16px;
  }
}

/* Hero Section */
.hero-section {
  background-color: var(--secondary);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 48px 16px;
  }
}

.hero-container {
  width: 100%;
  max-width: 448px;
}

/* Logo Container */
.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.logo-image {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

/* Main Content Card */
.content-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
  .content-card {
    padding: 40px;
  }
}

/* Headline Section */
.headline-section {
  text-align: center;
  margin-bottom: 32px;
}

.headline-section h1 {
  font-size: 18px;
  font-weight: 400;
  color: #1f2937;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .headline-section h1 {
    font-size: 20px;
  }
}

.amount {
  font-size: 48px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .amount {
    font-size: 56px;
  }
}

.subtitle {
  font-size: 14px;
  color: #4b5563;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 16px;
  }
}

/* Divider Line */
.divider-line {
  border-top: 1px solid #d1d5db;
  margin: 32px 0;
}

/* Steps List */
.steps-list {
  margin-bottom: 32px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.step-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-text {
  flex-grow: 1;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .step-text {
    font-size: 16px;
  }
}

/* CTA Button */
.cta-button {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 9999px;
  border: none;
  transition: all 0.2s ease;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
  font-family: inherit;
}

@media (min-width: 768px) {
  .cta-button {
    font-size: 18px;
  }
}

.cta-button:hover {
  background-color: #1f2937;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
  transform: scale(0.95);
}

.cta-arrow {
  display: inline-block;
}

/* Footer Text */
.footer-text {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

@media (min-width: 768px) {
  .footer-text {
    font-size: 14px;
  }
}

/* Trustpilot Badge */
.trustpilot-section {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.trustpilot-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trustpilot-label {
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
}

.star-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #16a34a;
  font-size: 18px;
}

.trustpilot-score {
  font-size: 12px;
  color: #6b7280;
}

@media (min-width: 768px) {
  .trustpilot-score {
    font-size: 14px;
  }
}

/* FAQ Section */
.faq-section {
  background-color: var(--secondary);
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 64px 16px;
  }
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .faq-header h2 {
    font-size: 36px;
  }
}

.faq-header p {
  color: #6b7280;
  font-size: 14px;
}

@media (min-width: 768px) {
  .faq-header p {
    font-size: 16px;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background-color: #f3f4f6;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #1f2937;
  font-size: 14px;
  transition: background-color 0.2s ease;
  text-align: left;
  font-family: inherit;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
  }
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question-text {
  padding-right: 16px;
  flex-grow: 1;
}

.chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.2s ease;
  display: inline-block;
}

.faq-item.expanded .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.expanded .faq-answer {
  max-height: 500px;
}

.faq-answer-text {
  padding: 16px 24px;
  background-color: #f9fafb;
  border-top: 1px solid var(--border);
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-answer-text {
    padding: 20px 24px;
    font-size: 16px;
  }
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 32px 16px;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-container {
    font-size: 16px;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 24px;
  }
}

.footer-link {
  color: var(--primary-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #d1d5db;
}

.footer-divider {
  display: none;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .footer-divider {
    display: inline;
  }
}

.footer-copyright {
  color: #9ca3af;
  font-size: 14px;
}

@media (min-width: 768px) {
  .footer-copyright {
    font-size: 16px;
  }
}
