        /* CSS Root Variable Scoping */
        :root {
            --primary: #303841;
            --accent: #FF5722;
            --secondary: #76ABAE;
            --bg-1: #F8FAFA;
            --bg-2: #EDF5F5;
            --bg-3: #E4EEEE;
            --bg-4: #DCE8E8;
            --text-dark: #2B3238;
            --text-light: #F0F4F4;
            --divider: rgba(48, 56, 65, 0.15);
        }

        /* Base Editorial Reset Rules */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-family: 'Noto Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-1);
        }

        body {
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Typography & Layout Scannability Kit */
        h1, h2, h3, h4 {
            font-weight: 700;
            color: var(--primary);
            line-height: 1.25;
            letter-spacing: -0.02em;
        }

        p {
            font-weight: 400;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .uppercase-nav-text {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .section-container {
            padding: 120px 8% 120px 8%;
            width: 100%;
        }

        .thin-hr {
            border: none;
            height: 1px;
            background-color: var(--divider);
            margin: 40px 0;
        }

        /* STICKY BLURRED HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 5%;
            background: rgba(248, 250, 250, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--divider);
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: var(--primary);
            padding: 15px 5%;
            border-bottom: none;
        }

        header.scrolled .nav-link,
        header.scrolled .logo-text,
        header.scrolled .search-btn {
            color: var(--text-light) !important;
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            color: var(--primary);
            cursor: pointer;
        }

        .logo-text span {
            color: var(--accent);
        }

        nav {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--primary);
            cursor: pointer;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-link:hover::after, .nav-link.active::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .search-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .subscribe-cta-btn {
            background-color: var(--accent);
            color: var(--text-light);
            border: none;
            padding: 10px 22px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .subscribe-cta-btn:hover {
            opacity: 0.9;
        }

        /* MOBILE HAMBURGER MECHANICS */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger-menu span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }

        header.scrolled .hamburger-menu span {
            background-color: var(--text-light);
        }

        /* VIEW DISPLAY ROUTING LAYERS */
        .app-view {
            display: none;
        }

        .app-view.active-view {
            display: block;
        }

        /* ========================================== */
        /* HERO COMPONENT STYLING                     */
        /* ========================================== */
        .editorial-hero {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 8%;
            background: linear-gradient(rgba(48, 56, 65, 0.75), rgba(48, 56, 65, 0.85)), 
                        url('https://i.pinimg.com/webp/1200x/0d/34/3f/0d343f694f2f423ca8cf48156fa27d7b.webp') no-repeat center center/cover;
            color: var(--text-light);
        }

        .hero-label {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 4rem;
            color: var(--text-light);
            max-width: 850px;
            line-height: 1.15;
            margin-bottom: 2rem;
        }

        .hero-description {
            max-width: 600px;
            font-size: 1.15rem;
            color: #CCD6D6;
            margin-bottom: 4rem;
        }

        .hero-stats-row {
            display: flex;
            width: 100%;
            max-width: 1000px;
            border-top: 1px solid rgba(240, 244, 244, 0.2);
            padding-top: 30px;
            gap: 40px;
        }

        .stat-block {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #A9B8B8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .vertical-divider {
            width: 1px;
            background-color: rgba(240, 244, 244, 0.2);
        }

        /* ========================================== */
        /* SECTION 2: FEATURED HEALTH TOPICS MOSAIC   */
        /* ========================================== */
        .topics-section {
            background-color: var(--bg-2);
            display: flex;
            gap: 6%;
        }

        .topics-left {
            width: 30%;
            position: sticky;
            top: 150px;
            height: fit-content;
        }

        .topics-left h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }

        .topics-right {
            width: 64%;
        }

        .mosaic-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .mosaic-item {
            position: relative;
            height: 320px;
            overflow: hidden;
            background-color: var(--primary);
            cursor: pointer;
        }

        .mosaic-item.large-block {
            grid-column: span 2;
            height: 400px;
        }

        .mosaic-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
        }

        .mosaic-item:hover .mosaic-img {
            transform: scale(1.04);
            opacity: 0.6;
        }

        .mosaic-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 35px;
            background: linear-gradient(transparent, rgba(0,0,0,0.85));
            color: var(--text-light);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .mosaic-title {
            font-size: 1.8rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .mosaic-hover-desc {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            font-size: 0.95rem;
            color: #CCD6D6;
            transition: max-height 0.4s ease, opacity 0.4s ease;
            margin-bottom: 0;
        }

        .mosaic-item:hover .mosaic-hover-desc {
            max-height: 100px;
            opacity: 1;
            margin-top: 5px;
        }

        /* ========================================== */
        /* SECTION 3: EDITORIAL FEATURE LAYER         */
        /* ========================================== */
        .editorial-split-section {
            background-color: var(--bg-1);
            display: flex;
            align-items: center;
            gap: 5%;
        }

        .editorial-img-wrapper {
            width: 48%;
            height: 650px;
            overflow: hidden;
        }

        .editorial-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .editorial-content-wrapper {
            width: 47%;
        }

        .editorial-quote {
            font-size: 1.35rem;
            font-style: italic;
            border-left: 4px solid var(--accent);
            padding-left: 20px;
            margin: 30px 0;
            color: var(--primary);
        }

        .read-guide-btn {
            background: none;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .read-guide-btn:hover {
            background-color: var(--primary);
            color: var(--text-light);
        }

        /* ========================================== */
        /* SECTION 4: PREVENTION CENTER BRUTAL GRID   */
        /* ========================================== */
        .prevention-section {
            background-color: var(--primary);
            color: var(--text-light);
            text-align: center;
        }

        .prevention-section h2 {
            color: var(--text-light);
            font-size: 3rem;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        .prevention-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: left;
        }

        .prevention-block {
            border-top: 1px solid rgba(240, 244, 244, 0.15);
            padding-top: 25px;
        }

        .prevention-block h3 {
            color: var(--text-light);
            font-size: 1.4rem;
            margin: 15px 0;
        }

        .prevention-block p {
            color: #A9B8B8;
            font-size: 0.98rem;
        }

        .bullet-icon {
            color: var(--accent);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* ========================================== */
        /* SECTION 5: FEATURED ARTICLES MAGAZINE GRID */
        /* ========================================== */
        .insights-section {
            background-color: var(--bg-1);
        }

        .insights-section h2 {
            font-size: 2.8rem;
            margin-bottom: 50px;
        }

        .magazine-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .featured-article-card {
            grid-column: span 2;
            grid-row: span 2;
            display: flex;
            flex-direction: column;
        }

        .featured-article-card .art-img-box {
            height: 480px;
            overflow: hidden;
            margin-bottom: 25px;
        }

        .art-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .art-img-box:hover img {
            transform: scale(1.03);
        }

        .art-meta {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .featured-article-card h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .medium-article-card {
            display: flex;
            flex-direction: column;
        }

        .medium-article-card .art-img-box {
            height: 220px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .medium-article-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .compact-article-box {
            border-bottom: 1px solid var(--divider);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .compact-article-box h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .read-time {
            font-size: 0.85rem;
            color: #707A84;
        }

        /* ========================================== */
        /* SECTION 6: HEALTH LIBRARY ACCORDIONS       */
        /* ========================================== */
        .library-section {
            background-color: var(--bg-3);
            display: flex;
            gap: 8%;
        }

        .library-left {
            width: 35%;
        }

        .library-left h2 {
            font-size: 2.8rem;
            line-height: 1.2;
        }

        .library-right {
            width: 57%;
        }

        .library-accordion {
            border-bottom: 1px solid var(--primary);
        }

        .accordion-trigger {
            width: 100%;
            padding: 25px 0;
            background: none;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
        }

        .accordion-icon {
            font-size: 1.6rem;
            transition: transform 0.3s ease;
        }

        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .accordion-panel p {
            padding-bottom: 25px;
            color: var(--text-dark);
            margin-bottom: 0;
        }

        /* ========================================== */
        /* SECTION 7: WELLNESS STORIES SPREAD         */
        /* ========================================== */
        .stories-section {
            position: relative;
            background: linear-gradient(rgba(48, 56, 65, 0.8), rgba(48, 56, 65, 0.85)),
                        url('https://i.pinimg.com/1200x/28/db/81/28db81cac4d5cdcdf943999c9fcc8abe.jpg') no-repeat center center/cover;
            color: var(--text-light);
            text-align: center;
            padding: 140px 10%;
        }

        .stories-section h2 {
            color: var(--text-light);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .stories-quote {
            font-size: 1.3rem;
            color: #CCD6D6;
            margin-bottom: 60px;
            font-style: italic;
        }

        .slider-viewport {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            height: 180px;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            pointer-events: none;
        }

        .testimonial-slide.active-slide {
            opacity: 1;
            pointer-events: auto;
        }

        .slide-body {
            font-size: 1.4rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .slide-author {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--accent);
        }

        /* ========================================== */
        /* SECTION 8: TRUSTED NEWSLETTER CONSOLE      */
        /* ========================================== */
        .newsletter-section {
            padding: 0;
            display: flex;
            background-color: var(--bg-4);
        }

        .newsletter-left-img {
            width: 45%;
            background: url('https://i.pinimg.com/webp/736x/9a/02/8f/9a028ffa5150e487250247f7309c9250.webp') no-repeat center center/cover;
        }

        .newsletter-right-panel {
            width: 55%;
            background-color: var(--secondary);
            padding: 90px 8%;
            color: var(--primary);
        }

        .newsletter-right-panel h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .news-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 35px;
        }

        .news-input {
            width: 100%;
            padding: 16px 20px;
            background-color: rgba(248, 250, 250, 0.9);
            border: 1px solid transparent;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .news-input:focus {
            border-color: var(--primary);
        }

        .news-select {
            width: 100%;
            padding: 16px 20px;
            background-color: rgba(248, 250, 250, 0.9);
            border: none;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
        }

        .news-submit-btn {
            background-color: var(--primary);
            color: var(--text-light);
            border: none;
            padding: 16px;
            font-size: 1.05rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .news-submit-btn:hover {
            background-color: #1E2329;
        }

        .unsubscribe-anchor {
            display: inline-block;
            margin-top: 20px;
            font-size: 0.85rem;
            color: var(--primary);
            text-decoration: underline;
            cursor: pointer;
        }

        /* ========================================== */
        /* EDITORIAL FOOTER                           */
        /* ========================================== */
        footer {
            background-color: var(--primary);
            color: #A9B8B8;
            padding: 80px 8% 40px 8%;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo-area h3 {
            color: var(--text-light);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .footer-col h4 {
            color: var(--text-light);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 25px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #A9B8B8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--text-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(240, 244, 244, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.88rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: #A9B8B8;
            text-decoration: none;
        }

        .footer-bottom-links a:hover {
            color: var(--text-light);
        }

        /* ========================================== */
        /* INTERNAL SUB-PAGES CONTENT DESIGN          */
        /* ========================================== */
        .subpage-hero {
            padding: 180px 8% 80px 8%;
            background-color: var(--bg-4);
            border-bottom: 1px solid var(--divider);
        }

        .subpage-hero h1 {
            font-size: 3.5rem;
            max-width: 900px;
        }

        .editorial-narrative-block {
            display: flex;
            gap: 8%;
            margin-bottom: 100px;
            align-items: flex-start;
        }

        .narrative-text {
            width: 50%;
        }

        .narrative-image {
            width: 42%;
            height: 450px;
            overflow: hidden;
        }

        .narrative-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .editorial-narrative-block.flipped {
            flex-direction: row-reverse;
        }

        /* Checklist Matrix for Prevention Page */
        .checklist-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .checklist-card {
            background-color: var(--bg-1);
            padding: 30px;
            border-left: 4px solid var(--secondary);
        }

        .checklist-card h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* Blog Layout Overrides */
        .blog-magazine-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        .blog-lead-story {
            border-bottom: 1px solid var(--divider);
            padding-bottom: 40px;
            margin-bottom: 40px;
        }

        .blog-lead-story img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        /* ========================================== */
        /* RESPONSIVE DESIGN ARCHITECTURE             */
        /* ========================================== */
        @media (max-width: 1024px) {
            .topics-section, .editorial-split-section, .library-section, .newsletter-section, .editorial-narrative-block, .editorial-narrative-block.flipped {
                flex-direction: column;
                gap: 50px;
            }
            .topics-left, .topics-right, .editorial-img-wrapper, .editorial-content-wrapper, .library-left, .library-right, .newsletter-left-img, .newsletter-right-panel, .narrative-text, .narrative-image {
                width: 100%;
            }
            .topics-left {
                position: relative;
                top: 0;
            }
            .prevention-grid, .magazine-layout, .footer-columns {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-article-card {
                grid-column: span 2;
            }
            .blog-magazine-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 20px;
            }
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                border-top: 1px solid rgba(240, 244, 244, 0.1);
            }
            nav.mobile-visible {
                display: flex;
            }
            .nav-link {
                color: var(--text-light) !important;
            }
            .hamburger-menu {
                display: flex;
            }
            .header-actions .subscribe-cta-btn {
                display: none;
            }
            .hero-title {
                font-size: 2.5rem;
            }
            .prevention-grid, .mosaic-grid, .magazine-layout, .footer-columns, .checklist-matrix {
                grid-template-columns: 1fr;
            }
            .mosaic-item.large-block {
                grid-column: span 1;
            }
            .hero-stats-row {
                flex-direction: column;
                gap: 20px;
            }
            .vertical-divider {
                height: 1px;
                width: 100%;
            }
        }
