 :root {
            --c-dark-teal: #2C4F5E;
            --c-orange: #EE7D30;
            --c-muted-teal: #5E8B8B;
            --c-light-blue: #C8E6EB;
            --c-yellow: #FDB913;
            --c-bg: #FFFFFF;
            --c-bg-alt: #F4F8F9;
            --c-text-main: #1A2F38;
            --c-text-light: #F4F8F9;
            --font-main: "ABeeZee", sans-serif;
            --header-height: 90px;
            --spacing-section: 6rem;
            --container-width: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        body {
            font-family: var(--font-main);
            color: var(--c-text-main);
            background-color: var(--c-bg);
            line-height: 1.6;
            padding-top: var(--header-height);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        h1, h2, h3 {
            color: var(--c-dark-teal);
            line-height: 1.2;
            margin-bottom: 1rem;
            font-weight: normal;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            position: relative;
            padding-bottom: 0.5rem;
        }

        h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--c-orange);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .container {
            width: 90%;
            max-width: var(--container-width);
            margin: 0 auto;
        }

        /* HEADER & NAV */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background-color: var(--c-bg);
            border-bottom: 2px solid var(--c-light-blue);
            z-index: 300;
            display: flex;
            align-items: center;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo-container img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 1rem;
            color: var(--c-dark-teal);
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--c-orange);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--c-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-block;
            color: var(--c-bg);
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-align: center;
            background-color: var(--c-orange);
            border: none;
        }

        .btn:hover {
            background-color: var(--c-dark-teal);
            transform: translateY(-2px);
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            min-height: calc(90vh - var(--header-height));
            display: flex;
            align-items: center;
            padding: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
            background-image: url('https://labs.google.com/pomelli_downloads/websites/93wZGgnnl21fs7fc4B6Ojl/resources/9s0tOFig_Jn3pUxFPL5Ow1');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(44,79,94,0.95) 0%, rgba(94,139,139,0.85) 100%);
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: var(--c-text-light);
            max-width: 800px;
        }

        .hero h1 {
            color: var(--c-text-light);
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--c-yellow);
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
            border-left: 4px solid var(--c-yellow);
            padding-left: 1.5rem;
        }

        /* OVERVIEW SECTION */
        .overview {
            background-color: var(--c-bg);
            padding: var(--spacing-section) 0;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .overview-text p {
            font-size: 1.15rem;
        }

        .image-wrapper {
            position: relative;
            padding: 1rem;
            background-color: var(--c-bg-alt);
            box-shadow: 10px 10px 0px 0px var(--c-light-blue);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 4/5;
        }

        /* METHODOLOGY SECTION */
        .methodology {
            background-color: var(--c-bg-alt);
            border-top: 1px solid var(--c-light-blue);
            border-bottom: 1px solid var(--c-light-blue);
            padding: var(--spacing-section) 0;
        }

        .method-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .card {
            background-color: var(--c-bg);
            padding: 2.5rem;
            border-top: 4px solid var(--c-muted-teal);
            box-shadow: 0 4px 20px rgba(44,79,94,0.05);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: var(--c-orange);
        }

        .card h3 {
            color: var(--c-dark-teal);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .card h3::before {
            content: "■";
            color: var(--c-yellow);
            font-size: 0.8rem;
        }

        /* VALUES SECTION */
        .values {
            background-color: var(--c-dark-teal);
            color: var(--c-text-light);
            text-align: center;
            padding: var(--spacing-section) 0;
        }

        .values h2 {
            color: var(--c-text-light);
            display: inline-block;
        }

        .values h2::after {
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--c-yellow);
        }

        .values-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 4rem;
            list-style: none;
        }

        .values-list li {
            background-color: rgba(200,230,235,0.1);
            border: 1px solid var(--c-muted-teal);
            padding: 1rem 2rem;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease;
        }

        .values-list li:hover {
            background-color: rgba(238,125,48,0.2);
            border-color: var(--c-orange);
        }

        /* INSTITUTIONAL / LOGOS SECTION */
        .institutional {
            background-color: var(--c-bg);
            text-align: center;
            padding: 4rem 0;
        }

        .institutional h3 {
            margin-bottom: 3rem;
            color: var(--c-text-main);
        }

        .logos-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }

        .logos-grid img {
            max-height: 80px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }

        .logos-grid img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* FOOTER */
        footer {
            background-color: var(--c-bg-alt);
            border-top: 1px solid var(--c-light-blue);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 3fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .footer-info h4 {
            color: var(--c-dark-teal);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-info p {
            color: var(--c-muted-teal);
            margin-bottom: 0.5rem;
        }

        .footer-banner img {
            width: 100%;
            height: auto;
            border: 1px solid #ddd;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--c-light-blue);
            color: var(--muted-teal);
            font-size: 0.9rem;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .overview-grid, .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .image-wrapper {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
                --spacing-section: 4rem;
            }
            .nav-links {
                display: none;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .logos-grid img {
                max-height: 60px;
            }
        }
