        /* CSS Start */
        @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

        :root {
            /* Branding Palette from Logo */
            /* --color-dark: #1D2430;      /* Deep Navy/Charcoal */
            /* --color-light: #F8F9FA;     /* Clean, soft off-white for main background */
            /* --color-white: #FFFFFF;
            --color-accent: #D98324;     /* Burnt Orange from tagline */
            /* --color-accent-secondary: #007BFF; /* A vibrant blue for secondary actions */
            /* --color-text-muted: #6C757D; /* Softer gray for secondary text */

            --color-dark: #1D2430;      /* Deep Navy/Charcoal (Kept for nav/footer background) */
            --color-light: #F8F9FA;     /* Clean, soft off-white for main background */
            --color-white: #FFFFFF;
            --color-accent: #007BFF;     /* Vibrant Blue (Primary accent) */
            --color-accent-secondary: #0056b3; /* A darker blue for hover/secondary actions */
            --color-text-muted: #6C757D; /* Softer gray for secondary text */

            /* Typography from Logo */
            --font-main: 'Raleway', sans-serif;

            /* Effects */
            --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.07);
            --transition-fast: all 0.2s ease-in-out;
        }

        /* --- Global Styles --- */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-dark);
            background-color: var(--color-light);
            margin: 0;
            padding: 0;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-main);
            font-weight: 700;
            line-height: 1.2;
            margin-top: 0;
            margin-bottom: 1rem;
        }
        
        /* --- Navigation --- */
        nav {
            background-color: var(--color-dark);
            padding: 0.5rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-medium);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .nav-logo {
            height: 50px;
        }

        .nav-brand {
            color: var(--color-white);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .nav-links {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 50%;
            flex-direction: column;
            align-items: center;
            justify-content: space-around;
            background-color: var(--color-dark);
            transition: right 0.5s ease-in-out;
        }

        .nav-links.nav-active { right: 0; }
        .nav-links a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: var(--transition-fast);
        }
        .nav-links a:hover { color: var(--color-accent); }
        
        .burger-menu { cursor: pointer; display: block; }
        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--color-white);
            margin: 5px;
            transition: all 0.3s ease;
        }
        .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .toggle .line2 { opacity: 0; }
        .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
        

        /* --- Header --- */
        .cta-box-h {
            background: linear-gradient(45deg, var(--color-dark) 0%, #2c3e50 100%);
            color: var(--color-white);
            padding: 4rem 2rem;
            text-align: center;
        }
        .cta-box-h h1 {
            font-size: 2.5rem;
        }
        .cta-box-h h2 {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 800px;
            margin: 1rem auto 0;
        }
        .header-logo {
            max-width: 400px;
            width: 100%;
            margin-bottom: 1.5rem;
        }

        /* --- Content Sections --- */
        .section {
            padding: 3rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #E9ECEF;
        }
        #s6, section:last-of-type { 
            border-bottom: none;
            margin-bottom: 0;
        }
        .section-split {
            display: flex;
            gap: 3rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .text-content {
            flex: 1.2;
            min-width: 300px;
        }

        /* --- Image Containers --- */
        .image-container, .image-group {
            flex: 1;
            min-width: 300px;
        }
        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow-medium);
        }
        .image-group .image-container:not(:first-child) {
            margin-top: 2rem;
        }

        /* --- Portal/Pillar Section --- */
        .portal-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: 1fr; /* Default to single column */
        }

        .portal-card {
            background-color: var(--color-white);
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            text-align: center;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: var(--transition-fast);
        }

        .portal-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .portal-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        .portal-card h4 {
            font-size: 1.5rem;
            color: var(--color-dark);
        }

        .portal-card .audience {
            font-weight: 600;
            color: var(--color-text-muted);
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }

        .portal-card .description {
            flex-grow: 1; 
            margin-bottom: 1.5rem;
        }

        /* --- Tables --- */
        .results-table {
            width: 100%;
            margin-top: 2.5rem;
            border-collapse: collapse;
            box-shadow: var(--shadow-soft);
            font-size: 0.9rem;
            display: block;
            overflow-x: auto;
        }
        .results-table th, .results-table td {
            border: 1px solid #DEE2E6;
            padding: 0.8rem 1rem;
            text-align: left;
            vertical-align: top;
        }
        .results-table thead th {
            background-color: var(--color-dark);
            color: var(--color-white);
            font-weight: 600;
        }
        .results-table tbody tr:nth-child(even) { background-color: var(--color-white); }
        .results-table td strong { font-weight: 600; }

        /* --- CTA Section & Buttons --- */
        .cta-section, footer {
            background: var(--color-dark);
            color: var(--color-light);
            padding: 4rem 2rem;
            text-align: center;
        }
        .cta-list {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            align-items: stretch;
            margin-top: 2rem;
        }
        .cta-button {
            display: inline-block;
            background-color: var(--color-accent);
            color: var(--color-white) !important;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1rem;
            font-family: var(--font-main);
            font-weight: 600;
            transition: var(--transition-fast);
            box-shadow: 0 5px 15px rgba(217, 131, 36, 0.3);
            text-align: center;
        }
        .cta-button:hover {
            background-color: #b96d1a;
            transform: translateY(-3px);
        }

        /* --- Responsive Design --- */
        @media (max-width: 899px) {
            .nav-links { width: 70%; }
        }
        @media (max-width: 768px) {
            .section-split { flex-direction: column; }
            .section-split.image-left { flex-direction: column; }
            .cta-box-h h1 { font-size: 2rem; }
        }

        @media (min-width: 900px) {
            .portal-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for screens 900px+ */
            }
        }

