        /* --- Base Reset & Core Styles --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden; 
            background-color: #ffffff; 
            color: #111827; 
            font-family: 'Lato', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            scroll-behavior: smooth;
        }


        /* --- Hero Section --- */
        .methodology-header {
            position: relative;
            padding: 100px 20px; 
            background-color: #000;
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://res.cloudinary.com/dhlerngui/image/upload/f_auto,q_auto,w_1920/v1778266211/copy_of_pexels-germar-derron-2151846079-33832070_ffc9gc_db0b2f.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 200px;
            overflow: hidden;
        }

        @media (min-width: 1024px) {
            .methodology-header { 
                padding: 180px 20px;
                min-height: 400px;
            }
            .header-text-wrapper {
                max-width: 1200px;
                margin: 0 auto;
                width: 100%;
                padding: 0 1.5rem;
            }
        }

        .header-text-wrapper {
            position: relative;
            z-index: 3;
        }

        .methodology-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 100;
            letter-spacing: clamp(0.2rem, 2vw, 1rem);
            font-size: clamp(2rem, 6vw, 3rem); 
            color: #ffffff;
            text-transform: uppercase;
            text-shadow: 0 4px 15px rgba(0,0,0,1);
            margin-bottom: 15px;
            text-align: center;
        }

        /* --- Updates Page Formatting --- */
        #pagehead {
            text-align: center;
            padding: 80px 1.5rem 40px;
            font-family: 'Oswald', sans-serif;
            font-size: 2.8rem;
            text-transform: uppercase;
            color: #0b1426;
            letter-spacing: 3px;
            margin-bottom:60px;
            font-size:24px;
        }

        .data-wrap {
            max-width: 1100px;
            margin: 0 auto 50px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 0 1.5rem;
        }

        @media (min-width: 768px) {
            .data-wrap {
                flex-direction: row;
                gap: 40px;
            }
            .date {
                flex: 0 0 150px;
                text-align: right;
                padding-top: 10px;
            }
        }

        .date p {
            font-family: 'Oswald', sans-serif;
            color: #0b1426;
            text-transform: uppercase;
            font-size: 1.25rem;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .date-day {
            display: block;
            height: 4px;
            width: 40px;
            background-color: #FCBA04;
            margin-top: 5px;
            margin-left: auto;
        }

        @media (max-width: 767px) {
            .date { text-align: left; }
            .date-day { margin-left: 0; }
        }

        .data-box {
            flex: 1;
            background-color: #f8fafc;
            padding: 40px;
            border-radius: 2px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .data-list p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #374151;
            font-weight: 400;
        }

        .data-list p:last-child {
            margin-bottom: 0;
        }



        @media (max-width: 768px) {
            .methodology-title { font-size: 2rem; }
            #pagehead { font-size: 1.2rem; padding: 60px 1.5rem 30px; }
        }
