        /* --- GLOBAL VARIABLES & THEME --- */
        :root {
            --primary-teal: #3AAFA9;     
            --primary-dark: #2B7A78;     
            --deep-marine: #17252A;      
            --warm-peach: #F6AB6C;       
            --bg-cream: #fdf9f0;
            --text-dark: #2B2D42;
            --text-muted: #6D7983;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body { 
            font-family: 'Poppins', sans-serif; 
            color: var(--text-dark); 
            line-height: 1.7; 
            overflow-x: hidden; 
            background: var(--white); 
        }
        
        h1, h2, h3, h4, .serif { font-family: 'Playfair Display', serif; color: var(--deep-marine); } 
        h1 { font-weight: 700; }
        h2 { font-weight: 600; font-size: 42px; }
        h3 { font-weight: 600; font-size: 24px; }
        ul { list-style: none; padding: 0; margin: 0; }
        a { text-decoration: none; transition: all 0.3s ease; }
        a:hover, a:focus { text-decoration: none; outline: none; }
        
        .section-padding { padding: 100px 0; scroll-margin-top: 80px; }
        .bg-cream-section { background: var(--bg-cream); }

        /* --- 1. HEADER & HAMBURGER NAVIGATION --- */
        .custom-navbar-wrapper {
            position: sticky; top: 0; z-index: 1000; background: var(--white);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .custom-navbar { padding: 15px 0; display: flex; justify-content: space-between; align-items: center; position: relative;}
        .custom-navbar .logo {
            display: flex; align-items: center; font-size: 20px; font-weight: 700;
            color: var(--primary-dark); gap: 12px; letter-spacing: -0.5px;
        }
        .custom-navbar .logo img { width: 45px; height: 45px; object-fit: cover; border-radius: 50%; }
        
        .nav-links { display: flex; gap: 30px; margin: 0; align-items: center; }
        .nav-links li a { color: var(--text-dark); font-size: 15px; font-weight: 500; position: relative; }
        .nav-links li a:hover { color: var(--primary-teal); }
        .nav-links li a::after {
            content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
            background-color: var(--primary-teal); transition: width 0.3s;
        }
        .nav-links li a:hover::after { width: 100%; }

        .menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
        .menu-toggle span { width: 28px; height: 3px; background: var(--primary-teal); border-radius: 3px; transition: all 0.3s ease; }

        /* --- 2. HERO SECTION --- */
        .hero { padding: 60px 0 140px; background: linear-gradient(135deg, #f5fdfb 0%, #ffffff 100%); }
        .hero-row { display: flex; align-items: center; flex-wrap: wrap; gap: 40px; }
        .hero-content { flex: 1; min-width: 300px; }
        .hero-subtitle { 
            font-size: 13px; font-weight: 600; color: var(--primary-teal); 
            letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; 
            display: inline-block; padding: 6px 15px; background: rgba(58, 175, 169, 0.1); border-radius: 30px;
        }
        .hero-content h2 { line-height: 1.15; margin-bottom: 20px; }
        .hero-content h3 { color: var(--text-muted); margin-bottom: 35px; font-size: 18px; font-weight: 400; max-width: 90%;}
        
        .btn-main { 
            background: var(--primary-teal); color: var(--white); padding: 14px 32px; 
            border-radius: 40px; font-weight: 600; font-size: 15px; display: inline-block; 
            box-shadow: 0 10px 25px rgba(58, 175, 169, 0.3); transition: all 0.3s ease;
        }
        .btn-main:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(43, 122, 120, 0.4); }

        .hero-image { flex: 1.2; min-width: 300px; position: relative; }
        .hero-image::before {
            content: ''; position: absolute; width: 100%; height: 100%; top: 20px; left: -20px;
            background: var(--primary-teal); border-radius: 24px; opacity: 0.1; z-index: 0;
        }
        .hero-image .carousel { border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.1); z-index: 1; }
        .hero-image .carousel-inner > .item > img { width: 100%; height: 450px; object-fit: cover; }

        /* --- 3. OVERLAPPING INFO CARDS --- */
        .info-cards-row { 
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; 
            margin-top: -100px; position: relative; z-index: 10; padding-bottom: 80px; scroll-margin-top: 100px; 
        }
        .info-card { 
            padding: 40px 30px; border-radius: 20px; color: var(--white); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.08); transition: transform 0.3s ease;
        }
        .info-card:hover { transform: translateY(-10px); }
        .info-card.bg-primary { background: var(--primary-teal); }
        .info-card.bg-dark { background: #f48fb1; }
        .info-card.bg-accent { background: var(--warm-peach); }
        
        .info-card h3 { font-size: 22px; margin-bottom: 20px; color: var(--white); }
        .info-card p, .info-card ul { font-size: 14px; opacity: 0.9; line-height: 1.8; }
        .info-card ul li { margin-bottom: 8px; padding-left: 20px; position: relative; }
        .info-card ul li::before { content: "\f00c"; font-family: "FontAwesome";position: absolute;left: 0;color: rgba(255,255,255,0.9);font-weight: 400; }
        .info-card a { color: var(--white); font-weight: 600; margin-top: 15px; display: inline-block; text-decoration: underline; text-underline-offset: 4px; }
        .info-card a:hover { color: rgba(255,255,255,0.8); }

        /* --- 4. SECTION TITLES --- */
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { margin-bottom: 10px; }
        .section-title h3 { font-family: 'Poppins', sans-serif; font-size: 15px; color: var(--primary-teal); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
        .section-title::after {
            content: ''; display: block; width: 60px; height: 3px; background: var(--primary-teal); margin: 20px auto 0; border-radius: 3px;
        }

        /* --- 5. INTERACTIVE TABS SECTION --- */
        .interactive-tabs-container {
            display: flex; gap: 0; background: var(--white); border-radius: 24px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.06); overflow: hidden; min-height: 500px;
        }
        .tab-menu { flex: 0 0 32%; background: #FAFCFC; display: flex; flex-direction: column; border-right: 1px solid #EAEAEA; }
        .tab-btn {
            padding: 22px 30px; text-align: left; background: transparent; border: none; border-bottom: 1px solid #EAEAEA;
            cursor: pointer; transition: all 0.3s ease; position: relative;
        }
        .tab-btn:last-child { border-bottom: none; }
        .tab-btn:hover { background: #F0F7F6; }
        .tab-btn.active { background: var(--white); box-shadow: -8px 0 20px rgba(0,0,0,0.02) inset; }
        .tab-btn.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary-teal); border-radius: 0 4px 4px 0; }
        .tab-title { display: block; font-size: 16px; font-weight: 600; color: var(--text-dark); transition: color 0.3s; }
        .tab-btn.active .tab-title { color: var(--primary-teal); }
        .tab-sub { display: block; font-size: 12px; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }

        .tab-content-wrapper { flex: 1; padding: 40px; position: relative; background: var(--white); }
        .tab-pane { display: none; animation: fadeIn 0.4s ease-in-out; }
        .tab-pane.active { display: block; }
        .pane-icon { font-size: 32px; margin-bottom: 20px; width: 60px; height: 60px; background: rgba(58, 175, 169, 0.1); display: flex; align-items: center; justify-content: center; border-radius: 15px; }
        .tab-pane h3 { font-size: 28px; color: var(--deep-marine); margin-bottom: 20px; }
        .tab-pane p { color: var(--text-muted); margin-bottom: 15px; font-size: 15px; }
        .pane-list { margin-bottom: 15px; padding-left: 20px; }
        .pane-list li { list-style-type: disc; margin-bottom: 5px; color: var(--text-muted); }
        .pane-alert {
            background: #FFF9F2; border-left: 4px solid var(--warm-peach); padding: 15px;
            border-radius: 0 8px 8px 0; font-size: 14px; color: #8A5A35; margin-top: 25px; line-height: 1.6;
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- 6. ABOUT SECTION --- */
        .about-row { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
         .about-image { flex: 1; min-width: 300px; position: relative; }

        .about-image img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); position: relative; z-index: 2; }

        .about-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 80%; height: 80%; border: 3px solid var(--primary-teal); border-radius: 20px; z-index: 1; } 
        .about-text { flex: 1.2; min-width: 300px; }
        .about-text h2 { margin-bottom: 25px; line-height: 1.2; font-size: 32px; }
        .about-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; text-align: justify; }

        /* --- 7. YOUTUBE CAROUSEL --- */
        .carousel-navigation-wrapper { position: relative; padding: 0 50px; }
        .slider-btn {
            position: absolute; top: 40%; transform: translateY(-50%); width: 40px; height: 40px; background: var(--white);
            border: 2px solid var(--primary-teal); border-radius: 50%; color: var(--primary-teal); font-size: 16px; font-weight: bold;
            display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .slider-btn:hover { background: var(--primary-teal); color: var(--white); }
        .slider-btn.prev-btn { left: -5px; }
        .slider-btn.next-btn { right: -5px; }

        .video-carousel-track { 
            display: flex; overflow-x: auto; gap: 25px; padding: 15px 5px 30px; 
            scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; 
        }
        .video-carousel-track::-webkit-scrollbar { display: none; } 
        
        .video-card { 
            flex: 0 0 300px; width: 300px; scroll-snap-align: start; background: var(--white); border-radius: 15px; 
            overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.06); transition: transform 0.3s; display: flex; flex-direction: column;
        }
        .video-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
        
        .video-thumb { position: relative; height: 170px; background: #000; display: block; overflow: hidden; flex-shrink: 0; }
        .video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.9;}
        .video-thumb:hover img { transform: scale(1.05); opacity: 1;}
        .play-btn { 
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 45px; height: 45px; 
            background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; 
            font-size: 18px; color: var(--primary-teal); z-index: 2;
        }
        
        .video-card-content { padding: 20px; flex-grow: 1; }
        .video-card-content h4 { font-size: 16px; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); line-height: 1.4;}
        .video-card-content p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; }

        /* --- 8. WHAT WE OFFER --- */
        .offer-row { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
        .offer-pills { flex: 1.2; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .pill { 
            background: var(--white); border: 1px solid #F0F0F0; padding: 12px 20px; border-radius: 50px; 
            display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: var(--text-dark);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02); transition: all 0.3s;
        }
        .pill:hover { border-color: var(--primary-teal); transform: translateY(-2px); }
        .pill .icon-sm { font-size: 20px; width: 35px; height: 35px; background: #F4FBFA; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .offer-image-side { flex: 1; min-width: 300px; }
        .offer-image-side img { width: 100%; border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

        /* --- 9. FORM SECTION STYLES --- */
        .contact-form-wrapper {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .form-control {
            border-radius: 10px;
            padding: 15px 20px;
            height: auto;
            border: 1px solid #EAEAEA;
            box-shadow: none;
            font-size: 15px;
            margin-bottom: 20px;
        }
        .form-control:focus {
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 0.2rem rgba(58, 175, 169, 0.25);
        }
        .form-group label {
            font-weight: 500;
            color: var(--deep-marine);
            margin-bottom: 8px;
        }

        /* --- 10. FOOTER --- */
        footer { background: var(--deep-marine); color: #D1D5DB; padding: 60px 0 20px; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 20px; }
        .footer-col p { line-height: 1.8; opacity: 0.8; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #D1D5DB; transition: color 0.3s; }
        .footer-col ul li a:hover { color: var(--primary-teal); padding-left: 5px; }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; opacity: 0.7; }
        
        /* Custom Icon Colors */
        .icon-diabetes { color: #ef5350; }     
        .icon-cardio { color: #e91e63; }       
        .icon-gi { color: #8bc34a; }           
        .icon-toxins { color: #9c27b0; }       
        .icon-obesity { color: #ffa726; }      
        .icon-thyroid { color: #26c6da; }      
        
        .pane-icon .fa { font-size: 40px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }

        /* ====================================================
           ЁЯУ▒ MOBILE RESPONSIVE CSS OVERRIDES 
           ==================================================== */
        @media (max-width: 991px) {
            .hero-content h2 { font-size: 36px; }
            .info-cards-row { grid-template-columns: 1fr; margin-top: 40px; padding-bottom: 40px; }
            .hero { padding-bottom: 60px; }
        }
        
        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            .section-title h2 { font-size: 28px; }
            
            .menu-toggle { display: flex; }
            .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .menu-toggle.open span:nth-child(2) { opacity: 0; }
            .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
            
            .nav-links { 
                position: absolute; top: 100%; left: 0; right: 0; background: var(--white); 
                flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                display: none; width: 100%; gap: 20px; text-align: center;
            }
            .nav-links.active { display: flex; }
            
            .hero-content { text-align: center; }
            .hero-content h3 { margin: 0 auto 30px; font-size: 16px;}
            .hero-image::before { display: none; } 
            .hero-image .carousel-inner > .item > img { height: 300px; }
            
            .interactive-tabs-container { flex-direction: column; min-height: auto; }
            .tab-menu { 
                flex: auto; border-right: none; display: flex; flex-direction: row; 
                overflow-x: auto; white-space: nowrap; border-bottom: 1px solid #EAEAEA; 
                -ms-overflow-style: none; scrollbar-width: none;
            }
            .tab-menu::-webkit-scrollbar { display: none; }
            .tab-btn { padding: 15px 20px; border-bottom: none; border-right: 1px solid #EAEAEA; flex: 0 0 auto; }
            .tab-btn.active::before { width: 100%; height: 3px; top: auto; bottom: 0; left: 0; border-radius: 4px 4px 0 0; }
            .tab-content-wrapper { padding: 30px 20px; }
            
            .slider-btn { display: none; } 
            .carousel-navigation-wrapper { padding: 0 5px; }
            .video-card { flex: 0 0 280px; width: 280px; } 
            
            .about-image::after { display: none; }
            .offer-pills { grid-template-columns: 1fr; }
            
            .contact-form-wrapper { padding: 25px 20px; }
        }