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

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #333333;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: #666666;
  margin-bottom: 3rem;
}

/* Trust Banner */
.trust-banner {
  background-color: #f8e1e9;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 999;
  overflow: hidden;
}

.trust-scroll-container {
  overflow: hidden;
  width: 100%;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-banner 45s linear infinite;
  width: max-content;
}

.trust-items:hover {
  animation-play-state: paused;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #333333;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}

.trust-icon {
  font-size: 1rem;
  opacity: 0.8;
}

/* Mobile Trust Banner */
@media (max-width: 768px) {
  .trust-banner {
    padding: 8px 0;
  }

  .trust-items {
    gap: 2rem;
    animation: scroll-banner 35s linear infinite;
  }

  .trust-item {
    font-size: 0.8rem;
    gap: 6px;
  }

  .trust-icon {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .trust-items {
    gap: 1.5rem;
    animation: scroll-banner 25s linear infinite;
  }

  .trust-item {
    font-size: 0.75rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #fd5820;
  color: white;
}

.btn-primary:hover {
  background-color: #e54d1c;
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* Header */
.header {
  position: relative;
  top: 10px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  z-index: 2000;
  padding: 0.5rem 0;
  border-radius: 20px 20px 0 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fd5820;
  margin: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  color: #4db6ac;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fd5820;
}

/* Hero Section */
.hero {
  padding: 161px 0 0;
  margin-top: -30px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("assets/images/ruthero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-info-card {
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-icon {
  font-size: 0.75rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-note {
  font-size: 0.875rem;
  color: #000000;
  text-align: center;
}

.hero-image {
  display: none;
}

.hero-photo {
  display: none;
}

/* Legal Compliance Section */
.legal-compliance {
  padding: 80px 0;
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
}

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

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
}

.legal-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.legal-features {
  display: grid;
  gap: 1.5rem;
}

.legal-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.legal-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  padding: 8px;
  background-color: #f8f8f8;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-feature-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.legal-feature-content p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}

.legal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.legal-badge {
  background-color: white;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 200px;
}

.badge-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.badge-flag {
  font-size: 1.5rem;
}

.badge-country {
  font-weight: 600;
  color: #333333;
  font-size: 0.875rem;
}

.badge-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}

.badge-content p {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1rem;
}

.badge-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkmark-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #666666;
}

.checkmark {
  color: #4db6ac;
  font-weight: bold;
  font-size: 0.875rem;
}

.legal-arrow {
  font-size: 2rem;
  color: #4db6ac;
  font-weight: bold;
}

.legal-disclaimer {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.legal-disclaimer p {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.legal-disclaimer strong {
  color: #333333;
}

/* Licensed Providers Section */
.licensed-providers {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

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

.providers-text {
  text-align: center;
}

.providers-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.providers-highlight {
  color: #4db6ac;
  font-style: italic;
}

.providers-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.providers-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.certified-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #a8e6a3;
  color: #333333;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  width: 20px;
  height: 20px;
  background-color: #333333;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Doctor Prescribed Treatments Section */
.treatments-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.treatments-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.treatments-subtitle {
  font-size: 1.125rem;
  color: #666666;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.treatment-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.treatment-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8e1e9 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-image img {
  width: 80%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.treatment-content {
  padding: 2rem;
}

.treatment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.treatment-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.treatment-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fd5820;
  background-color: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid #fd5820;
}

.treatment-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.treatment-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.treatment-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555555;
}

.treatment-features .feature-icon {
  font-size: 1.125rem;
  width: 20px;
  display: flex;
  justify-content: center;
}

.treatment-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.treatment-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(253, 88, 32, 0.3);
}

.treatments-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #4db6ac;
}

.treatments-note p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background-color: #fafafa;
  transition: transform 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #4db6ac;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333333;
}

.step-description {
  color: #666666;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8f8 0%, #ffffff 100%);
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
  font-weight: 600;
}

.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.testimonials-container {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
}

.testimonial-card {
  background-color: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  flex: 1;
  text-align: left;
  border: 1px solid #f0f0f0;
}

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

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.star {
  color: #4db6ac;
  font-size: 1.25rem;
}

.testimonial-author {
  font-weight: 600;
  color: #666666;
  font-size: 0.875rem;
}

.carousel-btn {
  background-color: white;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 1rem;
  font-size: 1.25rem;
  color: #666666;
}

.carousel-btn:hover {
  background-color: #f8f8f8;
  border-color: #4db6ac;
  color: #4db6ac;
}

.trustpilot-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  margin: 0 auto 2rem;
}

.rating-text {
  font-weight: 600;
  color: #333333;
}

.trustpilot-stars {
  display: flex;
  gap: 2px;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 1rem;
}

.trustpilot-logo {
  font-weight: 600;
  color: #00b67a;
  font-size: 0.875rem;
}

.testimonials-cta {
  background-color: #fd5820;
  color: white;
  border-radius: 25px;
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 600;
}

.testimonials-cta:hover {
  background-color: #e54d1c;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8e1e9 0%, #ffffff 100%);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-category {
  padding: 10px 20px;
  background-color: white;
  border: 2px solid #f0f0f0;
  border-radius: 25px;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.faq-category:hover {
  border-color: #4db6ac;
  color: #4db6ac;
}

.faq-category.active {
  background-color: #4db6ac;
  color: white;
  border-color: #4db6ac;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  gap: 1rem;
}

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

.faq-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.faq-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #4db6ac;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f0f8f8;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
  background-color: #4db6ac;
  color: white;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.faq-answer strong {
  color: #333333;
  font-weight: 600;
}

.faq-answer ul,
.faq-answer ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.faq-answer li strong {
  color: #333333;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #666666;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Education Section */
.education {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.education-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 0.5rem;
}

.education-subtitle {
  font-size: 1.125rem;
  color: #666666;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

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

.education-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.education-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  font-weight: 600;
  color: white;
  text-align: left;
  position: relative;
  padding: 1.5rem;
}

.myths-facts {
  background: linear-gradient(
      135deg,
      rgba(255, 107, 107, 0.3) 0%,
      rgba(255, 142, 83, 0.3) 30%
    ),
    url("assets/images/myths.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.access-health {
  background: linear-gradient(
      135deg,
      rgba(78, 205, 196, 0.3) 0%,
      rgba(68, 160, 141, 0.3) 30%
    ),
    url("assets/images/healthaccess.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.weight-effectiveness {
  background: linear-gradient(
      135deg,
      rgba(168, 237, 234, 0.3) 0%,
      rgba(254, 214, 227, 0.3) 30%
    ),
    url("assets/images/weight.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333333;
}

.plan-b-difference {
  background: linear-gradient(
      135deg,
      rgba(255, 236, 210, 0.3) 0%,
      rgba(252, 182, 159, 0.3) 30%
    ),
    url("assets/images/abortion.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333333;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.card-placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-content p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
}

.education-cta {
  text-align: center;
}

.btn-secondary {
  background-color: transparent;
  color: #4db6ac;
  border: 2px solid #4db6ac;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #4db6ac;
  color: white;
  transform: translateY(-1px);
}

.education-btn {
  font-size: 1rem;
  padding: 14px 35px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #fd5820;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background-color: white;
  color: #4db6ac;
}

.cta-section .btn-primary:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: #333333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  color: #fd5820;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
  color: #4db6ac;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: #fd5820;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #4db6ac;
}

.footer-bottom {
  border-top: 1px solid #555555;
  padding-top: 2rem;
}

.footer-disclaimer {
  background-color: #444444;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #fd5820;
}

.footer-disclaimer p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #cccccc;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    top: 33px;
  }

  .hero {
    padding: 145px 0 60px;
  }

  .hero .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 1.5rem;
    max-width: 90%;
    margin-bottom: 1rem;
  }

  .legal-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-title {
    font-size: 2rem;
  }

  .legal-visual {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .providers-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .providers-title {
    font-size: 2rem;
  }

  .treatments-title {
    font-size: 2rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .treatment-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .testimonials-title {
    font-size: 2rem;
  }

  .education-title {
    font-size: 2rem;
  }

  .education-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonial-card {
    min-width: unset;
  }

  .carousel-btn {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .header {
    top: 25px;
  }

  .hero {
    padding: 125px 0 60px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    padding: 1rem;
    max-width: 95%;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .providers-title {
    font-size: 1.75rem;
  }

  .treatments-title {
    font-size: 1.75rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treatment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .treatment-price {
    align-self: flex-end;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .education-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-graphic {
    width: 200px;
    height: 200px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
  outline: 2px solid #4db6ac;
  outline-offset: 2px;
}

/* Cultural Accents */
.baybayin-accent {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: italic;
  color: #4db6ac;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Hover Effects */
.step:hover .step-number {
  background-color: #fd5820;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.6s ease;
}

.hero-image {
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* Consultation Page Styles */

/* Navigation styles for consultation page */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fd5820;
}

/* Consultation page layout */
.consultation-page {
  min-height: 100vh;
  background-color: #fafafa;
  padding: 2rem 0;
}

.consultation-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.consultation-header h1 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 1rem;
}

.consultation-header p {
  font-size: 1.125rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.consultation-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.consultation-form-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.consultation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background-color: #e5e5e5;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e5e5;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background-color: #fd5820;
  color: white;
}

.progress-step span {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}

.progress-step.active span {
  color: #fd5820;
  font-weight: 600;
}

/* Form Styles */
.consultation-form {
  max-width: 100%;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

.form-section h2 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fd5820;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #333333;
  border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
  background-color: #e5e5e5;
  transform: translateY(-1px);
}

.next-btn,
.prev-btn {
  min-width: 120px;
}

/* Consultation Summary */
.consultation-summary {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.consultation-summary p {
  margin-bottom: 1rem;
  color: #555555;
}

.recommendation-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #fd5820;
}

.recommendation-card h3 {
  color: #fd5820;
  margin-bottom: 0.5rem;
}

.recommendation-card p {
  color: #666666;
  margin: 0;
}

/* Info Cards */
.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  color: #333333;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 0.5rem 0;
  color: #666666;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-card li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  margin-top: 2px;
}

.info-card p {
  color: #666666;
  margin-bottom: 1rem;
}

.info-card .btn {
  width: 100%;
  justify-content: center;
}

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

  .consultation-header {
    padding: 1rem 0;
  }

  .consultation-header h1 {
    font-size: 2rem;
  }

  .consultation-form-container {
    padding: 1.5rem;
  }

  .progress-bar {
    margin-bottom: 1.5rem;
  }

  .progress-step span {
    font-size: 0.75rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .consultation-page {
    padding: 1rem 0;
  }

  .consultation-header h1 {
    font-size: 1.75rem;
  }

  .consultation-header p {
    font-size: 1rem;
  }

  .consultation-form-container {
    padding: 1rem;
  }

  .progress-bar::before {
    left: 35px;
    right: 35px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }

  .progress-step span {
    font-size: 0.7rem;
  }

  .form-section h2 {
    font-size: 1.25rem;
  }
}

/* Modern Consultation Page Styles */
.consultation-page-modern {
  min-height: 100vh;
  background-image: url("assets/images/ruthero.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
}

.consultation-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Modern Progress Bar */
.progress-bar-modern {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #10b981;
  width: 20%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Modern Content Layout */
.consultation-content-modern {
  width: 100%;
  background-color: rgba(141, 136, 148, 0.8);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
  padding: 2rem;
}

.consultation-form-modern {
  width: 100%;
}

/* Form Steps */
.form-step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  min-height: calc(100vh - 8rem);
  flex-direction: column;
  justify-content: space-between;
}

.form-step.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-content {
  margin-bottom: 3rem;
}

/* Typography */
.step-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.step-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}

/* Form Groups */
.form-group-modern {
  margin-bottom: 2rem;
}

.form-group-modern label {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.75rem;
}

.form-group-modern select,
.form-group-modern input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group-modern select:focus,
.form-group-modern input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Checkbox Groups */
.checkbox-group-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.checkbox-option:hover {
  border-color: #10b981;
  background-color: #f0fdf4;
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
  background-color: #10b981;
  border-color: #10b981;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.checkbox-option span:not(.checkmark) {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.5;
}

/* Step Footer */
.step-footer {
  margin-top: 3rem;
}

.disclaimer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-top: 1rem;
  text-align: center;
}

.privacy-link {
  color: #10b981;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #059669;
}

/* Button Group */
.button-group {
  display: flex;
  gap: 1rem;
  width: 100%;
}

/* Continue Button */
.btn-continue {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #fd5820;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

/* Continue Button inside button group */
.button-group .btn-continue {
  width: auto;
  flex: 1;
}

/* Back Button */
.btn-back {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 120px;
}

.btn-continue:hover {
  background-color: #e54d1c;
  transform: translateY(-1px);
}

.btn-continue:active {
  transform: translateY(0);
}

.btn-back:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-back:active {
  transform: translateY(0);
}

/* Mobile Responsive for Modern Design */
@media (max-width: 768px) {
  .consultation-page-modern {
    padding: 1rem;
  }

  .consultation-container {
    max-width: 100%;
  }

  .progress-bar-modern {
    margin-bottom: 3rem;
  }

  .step-title {
    font-size: 2rem;
  }

  .step-subtitle {
    font-size: 1.5rem;
  }

  .form-group-modern select,
  .form-group-modern input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .checkbox-option {
    padding: 0.875rem;
  }

  .checkbox-option span:not(.checkmark) {
    font-size: 1rem;
  }

  .disclaimer {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .consultation-page-modern {
    padding: 0.5rem;
  }

  .progress-bar-modern {
    margin-bottom: 2rem;
  }

  .step-content {
    margin-bottom: 2rem;
  }

  .step-title {
    font-size: 1.75rem;
  }

  .step-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

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

  .step-footer {
    margin-top: 2rem;
  }

  .disclaimer {
    margin-bottom: 1.5rem;
  }
}

/* Typeform-style Enhancements */

/* Question Counter */
.question-counter {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1rem;
  color: white;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Step Description */
.step-description {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}

/* Typeform-style Form Groups */
.form-group-typeform {
  margin-bottom: 2rem;
}

.form-group-typeform select,
.form-group-typeform input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 500;
  color: #333333;
}

.form-group-typeform select:focus,
.form-group-typeform input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group-typeform input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Typeform-style Checkboxes */
.checkbox-group-typeform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkbox-option-typeform {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ffffff;
  min-height: 60px;
}

.checkbox-option-typeform:hover {
  border-color: #3b82f6;
  background-color: #f8fafc;
}

.checkbox-option-typeform.selected {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.checkbox-option-typeform input[type="checkbox"] {
  display: none;
}

.checkmark-typeform {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.checkbox-option-typeform.selected .checkmark-typeform {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-option-typeform.selected .checkmark-typeform::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.option-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.5;
  font-weight: 500;
}

/* Consent Section */
.consent-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* Button States */
.btn-continue:disabled {
  background-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.btn-continue:disabled:hover {
  background-color: #e5e7eb;
  transform: none;
}

.btn-continue.enabled {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
}

/* Enhanced Transitions - merged with main form-step rules above */

/* Enhanced Progress Fill */
.progress-fill {
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  transition: width 0.4s ease;
}

/* Reusable Classes from Styling Guide */
.overlay-card {
  background-color: rgba(141, 136, 148, 0.8);
  padding: 2rem;
  border-radius: 20px;
  color: white;
}

.feature-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Product Selection Styles */
.product-selection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-option {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333333;
}

.product-option:hover {
  border-color: rgba(253, 88, 32, 0.5);
  transform: translateY(-2px);
}

.product-option.selected {
  border-color: #fd5820;
  background-color: rgba(253, 88, 32, 0.1);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.product-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fd5820;
}

.product-description {
  margin-bottom: 1rem;
  color: #666666;
  font-size: 0.95rem;
}

.dosage-info {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-selector label {
  font-weight: 500;
  color: #333333;
}

.quantity-selector select {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: white;
  color: #333333;
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.address-suggestions {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
}

/* Payment Options Styles */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-option {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-option:hover {
  border-color: rgba(253, 88, 32, 0.5);
  transform: translateY(-2px);
}

.payment-option.selected {
  border-color: #fd5820;
  background-color: rgba(253, 88, 32, 0.1);
}

.payment-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.payment-details h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
}

.payment-details p {
  margin: 0 0 0.5rem 0;
  color: #666666;
  font-size: 0.9rem;
}

.payment-benefits {
  font-size: 0.8rem;
  color: #4caf50;
  line-height: 1.4;
}

/* Order Summary Styles */
.order-summary {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  color: #333333;
}

.order-summary h4 {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #666666;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  color: #333333;
  border-top: 1px solid #eee;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

/* Mobile Enhancements for Typeform Style */
@media (max-width: 768px) {
  .question-counter {
    top: 1rem;
    right: 1rem;
    font-size: 0.875rem;
  }

  .step-title {
    font-size: 1.75rem;
  }

  .step-subtitle {
    font-size: 1.25rem;
  }

  .step-description {
    font-size: 1rem;
  }

  .form-group-typeform select,
  .form-group-typeform input {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }

  .checkbox-option-typeform {
    padding: 1rem;
    min-height: 50px;
  }

  .option-text {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-back {
    order: 2;
    min-width: auto;
  }

  .btn-continue {
    order: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-selection {
    gap: 0.75rem;
  }

  .product-option {
    padding: 1rem;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .payment-option {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .order-summary {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .question-counter {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    margin-bottom: 1rem;
  }

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

  .step-subtitle {
    font-size: 1.125rem;
  }

  .step-description {
    font-size: 0.95rem;
  }

  .form-group-typeform select,
  .form-group-typeform input {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .checkbox-option-typeform {
    padding: 0.875rem;
  }

  .option-text {
    font-size: 0.95rem;
  }
}

/* Success message styling */
.success-message {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 48px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-message h1 {
  color: #2d5a3d;
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 700;
}

.success-message p {
  color: #4a5568;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.order-details {
  background: rgba(45, 90, 61, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.order-details h3 {
  color: #2d5a3d;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.order-details p {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 8px;
}

.next-steps {
  background: rgba(45, 90, 61, 0.05);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.next-steps h3 {
  color: #2d5a3d;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.next-steps li:before {
  content: "📝";
  position: absolute;
  left: 0;
  top: 0;
}
