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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1.5rem;
}

.logo {
  max-width: 280px;
  height: auto;
}

/* Hero Section */
.hero {
  padding: 0 1.5rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

/* Steps Section */
.steps-section {
  padding: 0 1.5rem 2rem;
}

.steps-box {
  max-width: 32rem;
  margin: 0 auto;
  background-color: #f8e4e0;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
}

.steps-box h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

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

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

.steps-list li:last-child {
  margin-bottom: 0;
}

.step-number {
  font-weight: 600;
  color: #1a1a1a;
}

.step-text {
  color: #1a1a1a;
}

.step-highlight {
  color: #c9a08a;
  font-weight: 500;
}

/* CTA Button Section */
.cta-section {
  padding: 0 1.5rem 2.5rem;
}

.cta-button {
  display: block;
  max-width: 32rem;
  margin: 0 auto;
  background-color: #f5c6c0;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s;
}

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

/* FAQ Section */
.faq-section {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(to bottom, #f9f1ef, #ffffff);
}

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

.faq-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1.25rem;
  text-align: center;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Trustpilot Section */
.trustpilot-section {
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.stars-container {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star-icon {
  width: 1.75rem;
  height: 1.75rem;
  fill: #00b67a;
  color: #00b67a;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

.trustpilot-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.trustpilot-badge .star-icon {
  width: 1rem;
  height: 1rem;
}

.trustpilot-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Footer */
.footer {
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  color: #888;
}

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .faq-title {
    font-size: 1.5rem;
  }
}
