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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #1e3a8a;
  color: white;
  padding: 1rem 0;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #f97316, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.continue-btn {
  background-color: #1e3a8a;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Progress Steps */
.progress-section {
  background-color: #f8f9fa;
  padding: 2rem 0;
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #e5e7eb;
}

.step.active .step-circle {
  background-color: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

.step-label {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

.step.active .step-label {
  color: #1e3a8a;
  font-weight: 600;
}

/* Main Content */
.main-content {
  background-color: white;
  padding: 3rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #374151;
}

.form-section p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9fafb;
  color: #374151;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e3a8a;
  background-color: white;
}

.form-group input::placeholder {
  color: #9ca3af;
}

.privacy-notice {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.privacy-notice a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
}

.submit-btn {
  background-color: #1e3a8a;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #1e40af;
}

/* Benefits Section */
.benefits-section {
  padding: 2rem 0;
}

.benefits-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-bullet {
  color: #1e3a8a;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.benefit-content h4 {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Stats Section */
.stats-section {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.stats-section h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #374151;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background-color: white;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  padding: 3rem 0;
  background-color: white;
}

.testimonials-section h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #374151;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #374151;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.25rem;
}

/* Footer */
.footer {
  background-color: #1e3a8a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #3b82f6;
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .progress-steps {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .header-actions {
    flex-direction: column;
    gap: 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
