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

    body {
      font-family: 'Inter', sans-serif;
      background: #f7f9fc;
      color: #1e1e2f;
      overflow-x: hidden;
      line-height: 1.6;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
      background-color: white;
      box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
      flex-wrap: wrap;
      position: sticky;
      top: 0;
      z-index: 100;
    }

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

    .logo img {
      height: 40px;
    }

    .logo h2 {
      font-size: 1.5rem;
      color: #ff7b7b;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #1e1e2f;
    }

    nav {
      display: flex;
      transition: all 0.3s ease;
    }

    nav a {
      margin: 0 10px;
      text-decoration: none;
      color: #1e1e2f;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      padding: 4px 9px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    nav a:hover {
      background-color: #f5f5f5;
    }

    .nav-link.active {
      color: #ff7b7b;
      font-weight: 400;
      background-color: #fff5f5;
    }

    .download-btn {
      background: #ff7b7b;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s ease;
    }

    .download-btn:hover {
      background: #ff6b6b;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(255, 123, 123, 0.3);
    }

    .page-section {
      display: none;
    }

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

    /* Hero Section */
    .hero {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 5%;
      background: linear-gradient(to right, #f7f9fc, #ffeceb);
      overflow: hidden;
      flex-wrap: wrap;
      min-height: 80vh;
    }

    .hero-text {
      flex: 1 1 500px;
      z-index: 2;
      margin-bottom: 30px;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #1e1e2f;
    }

    .hero-text p {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 30px;
      max-width: 600px;
    }

    .store-buttons {
      display: flex;
      align-items: center;
      margin-bottom: 40px;
      flex-wrap: wrap;
      gap: 15px;
    }

    .store-buttons img {
      height: 50px;
      transition: transform 0.3s ease;
    }

    .store-buttons img:hover {
      transform: translateY(-3px);
    }

    .diagonal-strips {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 150px;
      z-index: 1;
    }

    .strip {
      position: absolute;
      width: 150%;
      height: 60px;
      background: linear-gradient(90deg, #ffbaba, #ffc3b6);
      transform: rotate(-5deg);
      left: -25%;
    }

    .strip:nth-child(2) {
      top: 40px;
      background: linear-gradient(90deg, #ffc3b6, #ffe0d3);
      transform: rotate(-4deg);
    }

    .strip:nth-child(3) {
      top: 80px;
      background: linear-gradient(90deg, #ffe0d3, #fff1e6);
      transform: rotate(-3deg);
    }

    .phone-img {
      flex: 1 1 300px;
      z-index: 2;
      text-align: center;
    }

   .phone-img img {
  width: 54%;         
  max-width: 220px;    
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}


    /* About Section */
    .about-section {
      background: white;
      padding: 80px 5%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }

    .about-left {
      flex: 1 1 300px;
    }

    .about-left h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1e1e2f;
      line-height: 1.3;
    }

    .about-right {
      flex: 1 1 500px;
    }

    .about-right p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 20px;
    }

    /* App Promo Section */
    .app-promo {
      background: linear-gradient(90deg, #ff9d9d, #fdb1aa);
      border-radius: 20px;
      margin: 60px 5%;
      padding: 60px 5%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      box-shadow: 0 10px 30px rgba(255, 157, 157, 0.3);
    }

    .app-promo-text {
      flex: 1 1 300px;
      margin-bottom: 30px;
    }

    .app-promo-text h2 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .app-promo-text p {
      font-size: 1.1rem;
      margin-bottom: 25px;
    }

    .get-app-btn {
      background: white;
      color: #ff7b7b;
      font-weight: bold;
      padding: 12px 25px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .get-app-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .app-images {
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .app-images img {
      max-width: 180px;
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .app-images img:hover {
      transform: translateY(-5px);
    }

    /* FAQ Section */
    .faq-section {
      background: #fff;
      padding: 80px 5%;
    }

    .faq-section h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 50px;
      color: #1e1e2f;
    }

    .faq-item {
      border-bottom: 1px solid #eee;
      padding: 20px 0;
    }

    .faq-question {
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
    }

    .faq-question i {
      transition: transform 0.3s ease;
    }

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

    .faq-answer {
      display: none;
      margin-top: 10px;
      color: #555;
      line-height: 1.6;
      padding: 0 0 10px;
    }

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

    /* Contact Section */
    .contact-section {
      background: #fff;
      padding: 4rem 5%;
      border-radius: 1rem;
      max-width: 1100px;
      margin: 0 auto;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      border-radius: 1rem;
      overflow: hidden;
    }

    .contact-info {
      flex: 1 1 300px;
      background: linear-gradient(135deg, #ff9d9d, #fdb1aa);
      padding: 2rem;
      color: #fff;
    }

    .contact-info h2 {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .contact-info p {
      margin: 0.5rem 0;
    }

    .contact-details i {
      margin-right: 0.5rem;
    }

    .contact-form {
      flex: 1 1 400px;
      background: #f9f7f7;
      padding: 2rem;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
    }

    label {
      font-size: 0.9rem;
      margin-bottom: 0.3rem;
      color: #555;
    }

    input,
    textarea {
      padding: 0.75rem;
      border: none;
      border-bottom: 1px solid #ccc;
      background: transparent;
      font-size: 0.95rem;
      outline: none;
      width: 100%;
      transition: border-color 0.3s ease;
    }

    input:focus,
    textarea:focus {
      border-color: #ff7b7b;
    }

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

    .full {
      width: 100%;
    }

    .send-btn {
      background: #ea6b60;
      color: #fff;
      padding: 0.75rem 1.5rem;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 0.4rem;
      transition: background 0.3s ease;
    }

    .send-btn:hover {
      background: #d55c50;
    }

    /* Testimonials Section */
    .testimonials-section {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }
    
    .testimonials-header h2 {
      color: white;
      font-size: 2.5em;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .testimonials-header p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1em;
      margin-bottom: 30px;
      text-align: center;
    }
    
    /* Play Store Rating */
    .playstore-rating {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 20px;
      margin: 0 auto 40px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      max-width: 600px;
    }
    
    .rating-badge {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .stars-large {
      color: #FFD700;
      font-size: 1.8em;
      letter-spacing: 2px;
    }
    
    .rating-numbers {
      display: flex;
      flex-direction: column;
    }
    
    .average-rating {
      font-size: 2.5em;
      font-weight: bold;
      line-height: 1;
    }
    
    .total-reviews {
      font-size: 0.9em;
      opacity: 0.9;
    }
    
    .playstore-badge {
      filter: brightness(0) invert(1);
    }
    
    /* Reviews Carousel */
    .reviews-carousel {
      position: relative;
      max-width: 1200px;
      margin: 0 auto 40px;
      padding: 0 40px;
    }
    
    .reviews-wrapper {
      display: flex;
      gap: 25px;
      overflow-x: hidden;
      scroll-behavior: smooth;
      padding: 20px 10px;
      scrollbar-width: none; /* Firefox */
    }
    
    .reviews-wrapper::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    
    .review-card {
      flex: 0 0 calc(33.333% - 17px);
      min-width: 320px;
      background: white;
      color: #333;
      border-radius: 15px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .review-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .review-card .stars {
      color: #FFD700;
      font-size: 1.1em;
    }
    
    .review-date {
      color: #666;
      font-size: 0.9em;
    }
    
    .review-card .quote-icon {
      color: #764ba2;
      font-size: 2em;
      font-weight: bold;
      line-height: 0.5;
      margin-bottom: 15px;
    }
    
    .review-text {
      color: #444;
      line-height: 1.6;
      margin-bottom: 15px;
      font-size: 0.95em;
      height: 120px;
      overflow: hidden;
      position: relative;
    }
    
    .helpful-count {
      color: #666;
      font-size: 0.85em;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .helpful-count i {
      color: #4CAF50;
    }
    
    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .reviewer-avatar {
      font-size: 2.2em;
      color: #764ba2;
    }
    
    .reviewer-details {
      flex-grow: 1;
    }
    
    .verified-user {
      color: #4CAF50;
      font-size: 0.8em;
    }
    
    .verified-user i {
      margin-right: 5px;
    }
    
    /* Carousel Controls */
    .carousel-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
    }
    
    .carousel-prev,
    .carousel-next {
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2em;
      transition: all 0.3s ease;
    }
    
    .carousel-prev:hover,
    .carousel-next:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }
    
    .carousel-prev:disabled,
    .carousel-next:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      transform: none;
    }
    
    .carousel-indicators {
      display: flex;
      gap: 10px;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .indicator.active {
      background: white;
      transform: scale(1.2);
    }
    
    /* See More Button */
    .see-more-container {
      text-align: center;
      margin-top: 50px;
    }
    
    .see-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: #333;
      padding: 15px 35px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1em;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }
    
    .see-more-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      color: #764ba2;
    }
    
    .see-more-btn i.fa-external-link-alt {
      font-size: 0.9em;
      margin-left: 5px;
    }
    
    /* Write Review CTA */
    .write-review-cta {
      margin-top: 25px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .write-review-cta p {
      margin-bottom: 15px;
      font-size: 1.1em;
      color: white;
    }
    
    .write-review-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #4CAF50;
      color: white;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .write-review-btn:hover {
      background: #45a049;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
      .review-card {
        flex: 0 0 calc(50% - 13px);
        min-width: 280px;
      }
    }
    
    @media (max-width: 768px) {
      .testimonials-header h2 {
        font-size: 2em;
      }
      
      .playstore-rating {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      
      .rating-badge {
        flex-direction: column;
        gap: 10px;
      }
      
      .review-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
      }
      
      .reviews-carousel {
        padding: 0 20px;
      }
      
      .carousel-controls {
        gap: 20px;
      }
      
      .see-more-btn {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
    
    @media (max-width: 480px) {
      .reviews-carousel {
        padding: 0 10px;
      }
      
      .review-card {
        min-width: 260px;
        padding: 20px;
      }
      
      .review-text {
        height: 140px;
      }
    }

    .stars {
      color: #fcb6b6;
      font-size: 1.2rem;
      margin: 1rem 0;
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .user-img {
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    /* Insights Section */
    .insights-section {
      text-align: center;
      padding: 80px 5%;
      background-color: #000;
      color: #fff;
    }

    .insights-section h2 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 50px;
    }

    .insight-grid {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .insight-item {
      position: relative;
      width: 100%;
      max-width: 300px;
      overflow: hidden;
      margin-bottom: 30px;
      background: #1a1a1a;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s ease;
    }

    .insight-item:hover {
      transform: translateY(-5px);
    }

    .insight-item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .insight-item h3 {
      font-size: 1.25rem;
      margin: 10px 0 5px;
      color: #fff;
    }

    .insight-item .content {
      font-size: 0.95rem;
      color: #ddd;
      line-height: 1.5;
    }

    .more-text {
      display: none;
    }

    .insight-item.expanded .more-text {
      display: inline;
    }

    .insight-item .see-more {
      display: block;
      margin-top: 5px;
      color: #ff7b7b;
      font-weight: 500;
      text-decoration: none;
      font-size: 14px;
      cursor: pointer;
    }

    /* Footer Section */
    .footer-section {
      background-color: #ffecec;
      padding: 40px 5%;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo img {
      max-height: 60px;
      object-fit: contain;
    }

    .footer-text {
      text-align: right;
      color: #222;
      max-width: 500px;
    }

    .footer-text h3 {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .footer-text p {
      font-size: 0.95rem;
      color: #333;
    }
    .footer-links {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .footer-links a {
      text-decoration: none;
      color: #d6336c;
      font-weight: 500;
      transition: color 0.3s ease, border-bottom 0.3s ease;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: #a61e4d;
      border-bottom: 2px solid #a61e4d;
      padding-bottom: 2px;
    }

    /* ========== FERTILITY SECTION STYLES ========== */
    .fertility-section {
      background: white;
      padding: 80px 5%;
    }

    .fertility-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .fertility-content {
      flex: 1 1 500px;
    }

    .fertility-content h2 {
      font-size: 2.2rem;
      color: #ff7b7b;
      margin-bottom: 20px;
    }

    .fertility-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .fertility-features {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .feature-item {
      display: flex;
      gap: 15px;
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: #ffeceb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff7b7b;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .feature-text h4 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #1e1e2f;
    }

    .feature-text p {
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    .fertility-cta {
      margin-top: 40px;
    }

    .cta-button {
      background: #ff7b7b;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #ff6b6b;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 123, 123, 0.3);
    }

    .fertility-image {
      flex: 1 1 300px;
      position: relative;
      text-align: center;
    }

    .fertility-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* ========== PREGNANCY SECTION STYLES ========== */
    .pregnancy-section {
      background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
      padding: 80px 5%;
    }

    .pregnancy-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .pregnancy-content {
      flex: 1 1 500px;
    }

    .pregnancy-content h2 {
      font-size: 2.2rem;
      color: #4a90e2;
      margin-bottom: 20px;
    }

    .pregnancy-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .pregnancy-features {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .pregnancy-feature {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .pregnancy-feature:hover {
      transform: translateY(-5px);
    }

    .pregnancy-feature h3 {
      font-size: 1.3rem;
      color: #1e1e2f;
      margin-bottom: 15px;
    }

    .pregnancy-feature p {
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    .pregnancy-cta {
      margin-top: 40px;
    }

    .pregnancy-cta .cta-button {
      background: #4a90e2;
    }

    .pregnancy-cta .cta-button:hover {
      background: #3a80d2;
      box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    }

    .pregnancy-image {
      flex: 1 1 300px;
      position: relative;
      text-align: center;
    }

    .pregnancy-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* ========== DE-ADDICTION SECTION STYLES ========== */
    .deaddiction-section {
      background: linear-gradient(135deg, #fff5f5 0%, #ffecec 100%);
      padding: 80px 5%;
    }

    .deaddiction-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .deaddiction-content {
      flex: 1 1 500px;
    }

    .deaddiction-content h2 {
      font-size: 2.2rem;
      color: #e24a4a;
      margin-bottom: 20px;
    }

    .deaddiction-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .deaddiction-features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin: 40px 0;
    }

    .deaddiction-feature {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      flex: 1 1 250px;
      border-left: 4px solid #e24a4a;
    }

    .deaddiction-feature h3 {
      font-size: 1.2rem;
      color: #1e1e2f;
      margin-bottom: 10px;
    }

    .deaddiction-feature p {
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    .deaddiction-cta {
      margin-top: 40px;
    }

    .deaddiction-cta .cta-button {
      background: #e24a4a;
    }

    .deaddiction-cta .cta-button:hover {
      background: #d23a3a;
      box-shadow: 0 5px 15px rgba(226, 74, 74, 0.3);
    }

    .deaddiction-image {
      flex: 1 1 300px;
      position: relative;
      text-align: center;
    }

    .deaddiction-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* ========== PRAKRITI SECTION STYLES ========== */
    .prakriti-section {
      background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
      padding: 80px 5%;
    }

    .prakriti-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .prakriti-content {
      flex: 1 1 500px;
    }

    .prakriti-content h2 {
      font-size: 2.2rem;
      color: #2ecc71;
      margin-bottom: 20px;
    }

    .prakriti-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .prakriti-features {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin: 40px 0;
    }

    .prakriti-feature {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .prakriti-feature-icon {
      width: 50px;
      height: 50px;
      background: #e6ffed;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2ecc71;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .prakriti-feature-text h3 {
      font-size: 1.2rem;
      color: #1e1e2f;
      margin-bottom: 10px;
    }

    .prakriti-feature-text p {
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    .prakriti-cta {
      margin-top: 40px;
    }

    .prakriti-cta .cta-button {
      background: #2ecc71;
    }

    .prakriti-cta .cta-button:hover {
      background: #1ebc61;
      box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    }

    .prakriti-image {
      flex: 1 1 300px;
      position: relative;
      text-align: center;
    }

    .prakriti-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* ========== Q&A SECTION STYLES ========== */
    .qa-section {
      background: linear-gradient(135deg, #f8f0ff 0%, #f0e6ff 100%);
      padding: 80px 5%;
    }

    .qa-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .qa-content {
      flex: 1 1 500px;
    }

    .qa-content h2 {
      font-size: 2.2rem;
      color: #8a4ae2;
      margin-bottom: 20px;
    }

    .qa-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    .qa-features {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
      margin: 40px 0;
    }

    .qa-feature {
      background: white;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: all 0.3s ease;
    }

    .qa-feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .qa-feature-icon {
      font-size: 2.5rem;
      color: #8a4ae2;
      margin-bottom: 15px;
    }

    .qa-feature h3 {
      font-size: 1.2rem;
      color: #1e1e2f;
      margin-bottom: 10px;
    }

    .qa-feature p {
      font-size: 0.9rem;
      margin-bottom: 0;
    }

    .qa-cta {
      margin-top: 40px;
    }

    .qa-cta .cta-button {
      background: #8a4ae2;
    }

    .qa-cta .cta-button:hover {
      background: #7a3ad2;
      box-shadow: 0 5px 15px rgba(138, 74, 226, 0.3);
    }

    .qa-image {
      flex: 1 1 300px;
      position: relative;
      text-align: center;
    }

    .qa-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* ========== USER JOURNEY SECTION STYLES ========== */
    .user-journey-section {
      margin-top: 60px;
      padding: 40px;
      background: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .user-journey-section h3 {
      font-size: 1.8rem;
      color: #ff7b7b;
      margin-bottom: 30px;
      text-align: center;
    }

    .journey-steps {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .journey-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .step-number {
      width: 40px;
      height: 40px;
      background: #ff7b7b;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }

    .step-content {
      flex: 1;
    }

    .step-content h4 {
      font-size: 1.2rem;
      color: #1e1e2f;
      margin-bottom: 10px;
    }

    .step-content p {
      color: #555;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .sub-modules {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
      margin-top: 15px;
    }

    .sub-module {
      background: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      border-left: 3px solid #ff7b7b;
    }

    .sub-module h5 {
      font-size: 1rem;
      color: #ff7b7b;
      margin-bottom: 8px;
    }

    .sub-module p {
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.4;
    }

    /* ========== INTERACTIVE Q&A STYLES ========== */
    .qa-interactive {
      margin: 40px 0;
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .qa-item-interactive {
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .qa-item-interactive:last-child {
      border-bottom: none;
    }

    .qa-question-interactive {
      padding: 20px 25px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fafafa;
      transition: background 0.3s ease;
    }

    .qa-question-interactive:hover {
      background: #f5f5f5;
    }

    .qa-question-interactive h4 {
      margin: 0;
      font-size: 1.1rem;
      color: #333;
      font-weight: 600;
    }

    .qa-question-interactive .toggle-icon {
      font-size: 1.2rem;
      color: #8a4ae2;
      transition: transform 0.3s ease;
    }

    .qa-item-interactive.active .toggle-icon {
      transform: rotate(45deg);
    }

    .qa-answer-interactive {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
    }

    .qa-item-interactive.active .qa-answer-interactive {
      padding: 20px 25px;
      max-height: 500px;
    }

    .qa-answer-interactive p {
      margin: 0;
      color: #555;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Common Feature List Styles */
    .feature-list {
      margin: 20px 0;
    }

    .feature-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .feature-list i {
      color: #ff7b7b;
      margin-top: 5px;
    }

    /* Section Why It Matters */
    .why-matters {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 10px;
      margin: 30px 0;
      border-left: 4px solid #ff7b7b;
    }

    .why-matters strong {
      color: #1e1e2f;
    }

    /* ========== DISCLAIMER STYLES ========== */
    .disclaimer-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.85);
      color: white;
      padding: 10px 15px;
      font-size: 12px;
      z-index: 1000;
      text-align: center;
      border-top: 1px solid #444;
    }
    
    .disclaimer-banner p {
      margin: 0;
      line-height: 1.4;
    }
    
    .disclaimer-banner a {
      color: #ffcc00;
      text-decoration: underline;
      cursor: pointer;
    }
    
    .disclaimer-close {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: white;
      font-size: 16px;
      cursor: pointer;
    }
    
    .section-disclaimer {
      background: #f9f9f9;
      border-left: 4px solid #ffcc00;
      padding: 15px;
      margin: 20px 0;
      border-radius: 4px;
      font-size: 14px;
      line-height: 1.5;
    }
    
    .disclaimer-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }
    
    .disclaimer-popup-content {
      background: white;
      max-width: 500px;
      width: 90%;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .disclaimer-popup h3 {
      margin-top: 0;
      color: #333;
    }
    
    .disclaimer-popup p {
      margin-bottom: 20px;
      line-height: 1.5;
    }
    
    .disclaimer-popup-buttons {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }
    
    .disclaimer-popup-button {
      padding: 8px 15px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 500;
    }
    
    .disclaimer-popup-accept {
      background: #4CAF50;
      color: white;
    }
    
    .disclaimer-popup-decline {
      background: #f1f1f1;
      color: #333;
    }
    
    .disclaimer-tooltip {
      position: relative;
      display: inline-block;
      border-bottom: 1px dotted #666;
      cursor: help;
    }
    
    .disclaimer-tooltip .tooltiptext {
      visibility: hidden;
      width: 200px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 8px;
      position: absolute;
      z-index: 1;
      bottom: 125%;
      left: 50%;
      margin-left: -100px;
      opacity: 0;
      transition: opacity 0.3s;
      font-size: 12px;
      line-height: 1.4;
    }
    
    .disclaimer-tooltip:hover .tooltiptext {
      visibility: visible;
      opacity: 1;
    }

    .module-disclaimer {
      background: #fff8e1;
      border-left: 4px solid #ffcc00;
      padding: 12px 15px;
      margin: 20px 0;
      border-radius: 4px;
      font-size: 13px;
      line-height: 1.4;
    }
    
    .disclaimer-icon {
      color: #ffcc00;
      margin-right: 8px;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 1024px) {
      .fertility-container,
      .pregnancy-container,
      .deaddiction-container,
      .prakriti-container,
      .qa-container {
        flex-direction: column;
      }
      
      .fertility-content,
      .pregnancy-content,
      .deaddiction-content,
      .prakriti-content,
      .qa-content {
        flex: 1 1 100%;
      }
      
      .fertility-image,
      .pregnancy-image,
      .deaddiction-image,
      .prakriti-image,
      .qa-image {
        flex: 1 1 100%;
        margin-top: 40px;
      }
    }

    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      
      .about-left h2,
      .faq-section h2,
      .insights-section h2,
      .fertility-content h2,
      .pregnancy-content h2,
      .deaddiction-content h2,
      .prakriti-content h2,
      .qa-content h2 {
        font-size: 1.8rem;
      }
      
      .pregnancy-features,
      .deaddiction-features,
      .qa-features {
        grid-template-columns: 1fr;
      }
      
      .prakriti-feature {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-text {
        text-align: center;
      }
      
      .testimonials-header {
        max-width: 100%;
      }
      
      .testimonials-section {
        flex-direction: column;
      }
      
      .journey-step {
        flex-direction: column;
      }
      
      .step-number {
        align-self: flex-start;
      }
    }

    @media (max-width: 600px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .logo {
        margin-bottom: 15px;
      }
      
      .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
      }
      
      nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
      }
      
      nav.active {
        display: flex;
      }
      
      nav a {
        margin: 5px 0;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
      }
      
      .download-btn {
        margin-top: 15px;
        width: 100%;
      }
      
      .hero {
        padding: 30px;
      }
      
      .hero-text h1 {
        font-size: 1.8rem;
      }
      
      .about-section,
      .fertility-section,
      .pregnancy-section,
      .deaddiction-section,
      .prakriti-section,
      .qa-section {
        padding: 40px 2%;
      }
      
      .app-promo {
        margin: 20px 5%;
        padding: 30px 5%;
      }
      
      .app-promo-text h2 {
        font-size: 1.5rem;
      }
      
      .faq-section {
        padding: 40px 5%;
      }
      
      .faq-section h2 {
        font-size: 1.6rem;
      }
      
      .contact-section {
        padding: 2rem 5%;
      }
      
      .contact-container {
        flex-direction: column;
      }
      
      .testimonials-section {
        padding: 2rem 5%;
      }
      
      .testimonials-header h2 {
        font-size: 1.6rem;
      }
      
      .insights-section {
        padding: 30px 5%;
      }
      
      .insights-section h2 {
        font-size: 1.6rem;
      }
      
      .footer-section {
        padding: 30px 5%;
      }
      
      .user-journey-section {
        padding: 20px;
      }
      
      .sub-modules {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 1.6rem;
      }
      
      .about-left h2,
      .faq-section h2,
      .insights-section h2,
      .fertility-content h2,
      .pregnancy-content h2,
      .deaddiction-content h2,
      .prakriti-content h2,
      .qa-content h2 {
        font-size: 1.5rem;
      }
      
      .feature-item,
      .prakriti-feature {
        flex-direction: column;
        text-align: center;
      }
      
      .feature-icon,
      .prakriti-feature-icon {
        margin: 0 auto 15px;
      }
      .alert {
        padding: 12px 20px;
        border-radius: 8px;
        margin-top: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
      }
      .alert.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
      }
      .alert.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
      }
      .error-message {
        color: #dc3545;
        font-size: 0.875em;
        margin-top: 5px;
        display: none;
      }
    }