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

body {
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #007DB8;
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  max-width: 448px;
  margin: 0 auto;
  padding: 8px 16px;
}

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

.logo {
  border-radius:16px;
  width: 144px;
  height: auto;
  margin: 0;
  padding: 0;
}

/* Headline */
.headline {
  margin-bottom: 0;
  margin-top: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
  padding: 4px 0;
}

/* Progress Indicator */
.progress-indicator {
  margin-bottom: 8px;
  text-align: center;
}

.progress-text {
  font-size: 12px;
  color: #333333;
}

/* How It Works */
.how-it-works {
  border-radius: 8px;
  background-color: rgba(255,255,255,0.15);
  padding: 12px;
  margin: 0 6px 12px;
}

.section-title {
  margin-bottom: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

.steps-list {
  list-style: none;
  font-size: 12px;
  color: #ffffff;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

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

.step-number {
  display: flex;
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #00008B;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
}

/* Session Timer */
.session-timer {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}

.timer-icon {
  width: 14px;
  height: 14px;
  color: #000000;
}

.timer-label {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.timer-value {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
}

/* CTA Button */
.cta-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.cta-container a {
  text-decoration: none;
}

.cta-button {
  background-color: #ffffff;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  border: none;
  border-radius: 8px;
  width: 192px;
  cursor: pointer;
  transition: background-color 0.2s;
}

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

/* Form */
.form-container {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-container.hidden {
  display: none;
}

.form-input {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 12px;
  border: 1px solid #3f3f46;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.form-input::placeholder {
  color: #6b7280;
}

.privacy-note {
  font-size: 12px;
  color: #9ca3af;
}

.submit-button {
  width: 100%;
  background-color: #000000;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #1fdf66;
}

/* Supporting Text */
.supporting-text {
  margin-bottom: 8px;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

/* Trust Score */
.trust-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.trustpilot-header {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trustpilot-icon {
  height: 18px;
  width: 18px;
}

.trustpilot-text {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow:0 1px 3px rgba(0,0,0,.35);
}

.stars-container {
  margin-bottom: 4px;
  display: flex;
  gap: 2px;
}

.star-box {
  display: flex;
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #00b67a;
  position: relative;
}

/* Updated half-star implementation to match React version */
.star-box.half {
  overflow: hidden;
  background: transparent;
}

.half-left {
  position: absolute;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: #00b67a;
  z-index: 1;
}

.half-right {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
  background-color: transparent;
  z-index: 1;
}

.star-icon {
  height: 12px;
  width: 12px;
  position: relative;
  z-index: 2;
}

.trust-info {
  font-size: 10px;
  color: #FFFFFF;
  text-shadow:0 1px 3px rgba(0,0,0,.35);
}

.trust-score-text {
  font-weight: 600;
}

.separator {
  color: #6b7280;
}

.reviews-text {
  color: #d1d5db;
}

/* FAQ Section */
.faq-section {
  margin-top: 16px;
}

.faq-title {
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #27272a;
}

.accordion-trigger {
  width: 100%;
  padding: 16px 0;
  text-align: left;
  font-size: 14px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: #00008B;
}

.accordion-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 16px;
}

.accordion-content p {
  font-size: 14px;
  color: #000000;
}

/* Privacy Statement */
.privacy-statement {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #000000;
}

/* Footer */
.footer {
  margin-top: 24px;
  border-top: 1px solid #27272a;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #000000;
}

.disclaimer {
  font-size: 9px;
  color: #000000;
}
