      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: #2c3e50;
        background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
        min-height: 100vh;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      header {
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        min-height: 85px;
        position: relative;
        box-shadow: 0 4px 20px rgba(124, 171, 138, 0.15);
        overflow: hidden;
      }
      header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23fff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23fff" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="%23fff" opacity="0.1"/></svg>')
          repeat;
        animation: float 20s infinite linear;
      }
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
        100% {
          transform: translateY(0px);
        }
      }
      .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 85px;
        position: relative;
        z-index: 10;
      }
      .logo-container {
        display: flex;
        align-items: center;
        z-index: 15;
        position: relative;
      }
      .logo-container img {
        height: 45px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        transition: transform 0.3s ease;
      }
      .logo-container:hover img {
        transform: scale(1.05);
      }
      .nav-container {
        display: flex;
        align-items: center;
        z-index: 12;
      }
      nav ul {
        display: flex;
        list-style: none;
        gap: clamp(15px, 3vw, 35px);
        margin: 0;
        padding: 0;
      }
      nav ul li {
        position: relative;
      }
      nav ul li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: clamp(14px, 1.5vw, 16px);
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
      }
      nav ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
      }
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          gap: 15px;
          padding: 15px 0;
          min-height: auto;
        }
        nav ul {
          flex-wrap: wrap;
          justify-content: center;
          gap: 12px;
        }
        nav ul li a {
          padding: 10px 14px;
          font-size: 14px;
        }
      }
      footer {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color: #ecf0f1;
        padding: 60px 0 30px;
        position: relative;
        overflow: hidden;
      }
      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2, #d4e5d7);
      }
      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }
      .footer-section h3 {
        color: #7cab8a;
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
      }
      .footer-section h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #7cab8a, #a9cab2);
        border-radius: 2px;
      }
      .footer-section p,
      .footer-section a {
        color: #bdc3c7;
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.3s ease;
      }
      .footer-section a:hover {
        color: #7cab8a;
        text-shadow: 0 0 8px rgba(124, 171, 138, 0.3);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-links a {
        padding: 5px 0;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
      }
      .footer-links a:hover {
        border-bottom-color: #7cab8a;
        padding-left: 10px;
      }
      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #34495e;
        color: #95a5a6;
      }
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .contact-item::before {
        content: "";
        width: 8px;
        height: 8px;
        background: #7cab8a;
        border-radius: 50%;
        flex-shrink: 0;
      }
      @media (max-width: 768px) {
        .footer-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        footer {
          padding: 40px 0 20px;
        }
      }
      .cookie-popup {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: linear-gradient(135deg, #7cab8a 0%, #a9cab2 100%);
        color: white;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: none;
        animation: slideUp 0.5s ease-out;
      }
      @keyframes slideUp {
        from {
          transform: translateY(100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .cookie-popup.show {
        display: block;
      }
      .cookie-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
      }
      .cookie-text {
        flex: 1;
        font-size: 14px;
        line-height: 1.5;
      }
      .cookie-actions {
        display: flex;
        gap: 12px;
      }
      .cookie-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        font-weight: 500;
      }
      .cookie-accept {
        background: white;
        color: #7cab8a;
      }
      .cookie-accept:hover {
        background: #f8f9fa;
        transform: translateY(-1px);
      }
      .cookie-decline {
        background: transparent;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      .cookie-decline:hover {
        background: rgba(255, 255, 255, 0.1);
      }
      @media (max-width: 640px) {
        .cookie-content {
          flex-direction: column;
          text-align: center;
        }
        .cookie-popup {
          left: 10px;
          right: 10px;
        }
      }
      .index-page-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }
      .hero-section-main {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 600px;
        background: linear-gradient(
            135deg,
            rgba(124, 171, 138, 0.9),
            rgba(212, 229, 215, 0.8)
          ),
          url("./article_images/NGOeKjaW.jpg");
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
      }
      .hero-content-wrapper {
        max-width: 800px;
        padding: 0 30px;
        margin: 0 auto;
        width: 100%;
      }
      .hero-main-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        line-height: 1.2;
      }
      .hero-subtitle-text {
        font-size: 1.3rem;
        margin-bottom: 30px;
        opacity: 0.95;
        font-weight: 300;
        line-height: 1.6;
      }
      .hero-cta-button {
        display: inline-block;
        padding: 15px 40px;
        background: #7cab8a;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(124, 171, 138, 0.4);
        position: relative;
        z-index: 10;
        cursor: pointer;
        margin-top: 10px;
      }
      .hero-cta-button:hover {
        background: #a9cab2;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(124, 171, 138, 0.6);
      }
      .testimonial-driven-section {
        padding: 80px 0;
        background: #f8f9fa;
        width: 100%;
        margin: 0 auto;
      }
      .testimonial-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
      }
      .testimonial-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .testimonial-section-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
      }
      .testimonial-section-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
      }
      .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }
      .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #333;
        margin-bottom: 20px;
        font-style: italic;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        margin-top: 20px;
      }
      .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 15px;
        object-fit: cover;
      }
      .testimonial-author-info {
        flex: 1;
      }
      .testimonial-author-name {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 5px;
      }
      .testimonial-author-title {
        color: #7cab8a;
        font-size: 0.9rem;
      }
      .transformation-journey-section {
        padding: 80px 0;
        background: linear-gradient(45deg, #7cab8a, #a9cab2);
        color: white;
        width: 100%;
        position: relative;
        overflow: hidden;
      }
      .transformation-journey-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("./article_images/5t0THIR2C.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: 1;
      }
      .transformation-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
      }
      .transformation-title {
        font-size: 2.8rem;
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .journey-steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
      }
      .journey-step {
        flex: 1;
        min-width: 250px;
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
      }
      .journey-step:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
      }
      .journey-step-number {
        font-size: 3rem;
        font-weight: 700;
        color: #d4e5d7;
        margin-bottom: 15px;
      }
      .journey-step-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 10px;
      }
      .journey-step-description {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.9;
      }
      .statistics-showcase {
        padding: 80px 0;
        background: white;
        width: 100%;
      }
      .statistics-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
      }
      .statistics-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .statistics-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 20px;
        font-weight: 700;
      }
      .statistics-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
      }
      .stat-card {
        text-align: center;
        padding: 30px 20px;
        background: linear-gradient(135deg, #d4e5d7, #a9cab2);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
      }
      .stat-card:hover {
        transform: scale(1.05);
      }
      .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 10px;
      }
      .stat-label {
        font-size: 1.1rem;
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 5px;
      }
      .stat-description {
        font-size: 0.9rem;
        color: #4a5568;
        line-height: 1.5;
      }
      .methodology-preview {
        padding: 80px 0;
        background: #f8f9fa;
        width: 100%;
        position: relative;
      }
      .methodology-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("./article_images/AKf50wzY1");
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: 1;
      }
      .methodology-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
      }
      .methodology-title {
        font-size: 2.5rem;
        text-align: center;
        color: #2c3e50;
        margin-bottom: 50px;
        font-weight: 700;
      }
      .methodology-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
      }
      .methodology-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-left: 5px solid #7cab8a;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .methodology-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      }
      .methodology-card-title {
        font-size: 1.4rem;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 600;
      }
      .methodology-card-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #4a5568;
        margin-bottom: 20px;
      }
      .methodology-card-features {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .methodology-card-features li {
        padding: 5px 0;
        color: #2c3e50;
        position: relative;
        padding-left: 20px;
      }
      .methodology-card-features li::before {
        content: "";
        position: absolute;
        left: 0;
        color: #7cab8a;
        font-weight: bold;
      }
      .success-stories-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: white;
        width: 100%;
      }
      .success-stories-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
      }
      .success-stories-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 50px;
        font-weight: 700;
      }
      .success-stories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
      }
      .success-story-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 30px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }
      .success-story-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
      }
      .success-story-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #d4e5d7;
      }
      .success-story-content {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        opacity: 0.9;
      }
      .success-story-outcome {
        font-size: 0.9rem;
        color: #a9cab2;
        font-weight: 500;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 15px;
      }
      .final-cta-section {
        padding: 80px 0;
        background: #7cab8a;
        color: white;
        text-align: center;
        width: 100%;
      }
      .final-cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 30px;
        width: 100%;
      }
      .final-cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
      }
      .final-cta-text {
        font-size: 1.2rem;
        margin-bottom: 30px;
        opacity: 0.9;
        line-height: 1.6;
      }
      .final-cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .final-cta-button {
        display: inline-block;
        padding: 15px 30px;
        background: white;
        color: #7cab8a;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
        cursor: pointer;
        min-width: 180px;
      }
      .final-cta-button:hover {
        background: #d4e5d7;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      .final-cta-button.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
      }
      .final-cta-button.secondary:hover {
        background: white;
        color: #7cab8a;
      }
      @media (max-width: 768px) {
        .hero-main-title {
          font-size: 2.5rem;
        }
        .hero-subtitle-text {
          font-size: 1.1rem;
        }
        .hero-section-main {
          height: 80vh;
          min-height: 500px;
          background-attachment: scroll;
        }
        .testimonial-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .testimonial-card {
          padding: 20px;
        }
        .journey-steps {
          flex-direction: column;
          align-items: center;
        }
        .journey-step {
          width: 100%;
          max-width: 350px;
        }
        .stats-grid {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 20px;
        }
        .methodology-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .success-stories-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .final-cta-buttons {
          flex-direction: column;
          align-items: center;
        }
        .final-cta-button {
          width: 100%;
          max-width: 300px;
        }
        .transformation-title,
        .statistics-title,
        .methodology-title,
        .success-stories-title,
        .final-cta-title {
          font-size: 2rem;
        }
        .testimonial-section-title {
          font-size: 2rem;
        }
      }
      @media (max-width: 480px) {
        .hero-content-wrapper,
        .testimonial-container,
        .transformation-content,
        .statistics-container,
        .methodology-content,
        .success-stories-container,
        .final-cta-container {
          padding: 0 20px;
        }
        .hero-main-title {
          font-size: 2rem;
        }
        .testimonial-grid {
          grid-template-columns: 1fr;
        }
        .stats-grid {
          grid-template-columns: 1fr;
        }
        .stat-number {
          font-size: 2.5rem;
        }
        .journey-step-number {
          font-size: 2.5rem;
        }
      }