        /* --- 1. 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;
        }


        /* --- 3. Hero Section (Geometric Shape Variant) --- */
        .methodology-header {
            position: relative;
            padding: 100px 20px; 
            background-color: #0b1426; 
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 200px;
            overflow: hidden;
        }

        .methodology-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FCBA04 0%, transparent 40%);
            opacity: 0.1; 
            z-index: 1;
        }

        .methodology-header::after {
            content: "";
            position: absolute;
            bottom: -50px;
            right: -10%;
            width: 60%;
            height: 200px;
            background-color: #FCBA04;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
            opacity: 0.8;
            z-index: 1;
            transform: rotate(-2deg);
        }

        @media (min-width: 1024px) {
            .methodology-header { 
                padding: 140px 20px;
                min-height: 400px;
            }
        }

        .header-text-wrapper {
            position: relative;
            z-index: 10; 
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .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,0.5);
            margin-bottom: 0;
            text-align: center;
        }

        /* --- 4. Contact Content --- */
        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 1.5rem 60px;
        }

        .contact-card {
            background-color: #f8fafc;
            padding: 60px 40px;
            border-top: 4px solid #FCBA04;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
        }

        .contact-intro-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            text-transform: uppercase;
            color: #0b1426;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }

        .contact-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 50px;
            font-weight: 400;
        }

        .contact-text a {
            text-decoration:none;
            border-bottom:2px solid #FCBA04;
            color:#4b5563;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
        }

        @media (min-width: 768px) {
            .contact-methods {
                flex-direction: row;
                justify-content: center;
                gap: 60px;
            }
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: #0b1426;
            color: #FCBA04;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-icon svg {
            transition: fill 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background-color: #FCBA04;
            color: #0b1426; 
        }

        .contact-item:hover .contact-icon svg {
            fill: #0b1426 !important; 
        }

        .contact-label {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0b1426;
            font-size: 0.9rem;
        }

        .contact-value {
            font-family: 'Montserrat', sans-serif;
            color: #0b1426;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* --- 5. Final Section (Overlay/Overlap Design) --- */
        .info-overlay-section {
            position: relative;
            background-color: #000000;
            color: #ffffff;
            margin-top: 40px;
            padding: 80px 1.5rem;
            overflow: hidden;
            z-index: 1;
        }

        /* Background logic handled via pseudo-element */
        .info-overlay-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://res.cloudinary.com/dhlerngui/image/upload/v1778275384/copy_of_untitled_design_1_safpv4_c47326.png');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .info-content-container {
            max-width: 1440px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .info-text-content {
            display: flex;
            flex-direction: column;
            justify-content: center;

        }

        .info-text-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
            color: #ffffff;
            width: 100%;
        }

        @media (max-width: 768px) {
            .info-text-content p {font-size: 1rem;
                    }}

        @media (min-width: 1024px) {
            .info-overlay-section {
                padding: 140px 0;
            }

            /* Desktop split: Image only on right 50% */
            .info-overlay-section::before {
                left: 50%; /* Image starts exactly halfway */
                width: 50%;
                background-image: 
                    linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 100%), 
                    url('https://res.cloudinary.com/dhlerngui/image/upload/v1778275384/copy_of_untitled_design_1_safpv4_c47326.png');
            }

            .info-text-content {
                /* Constrain text to overlap slightly into center, staying on left side */
                width: 75%; 
                padding-left: max(2rem, calc((100vw - 1440px) / 2 + 2rem));
                text-align: left;
            }
        }


        .paypal-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background-color: #0b1426;
            color: #ffffff;
            padding: 1.25rem 2.5rem;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: all 0.3s ease-in-out; /* Standardized transition */
            border: 2px solid #0b1426;
        }

        .paypal-button i {
            color: #FCBA04;
            font-size: 1.4rem;
            transition: color 0.3s ease-in-out; /* Match parent transition precisely */
        }

        .paypal-button:hover {
            background-color: #FCBA04;
            color: #0b1426;
            border-color: #FCBA04;
        }

        .paypal-button:hover i {
            color: #0b1426;
        }



        @media (max-width: 768px) {
            .methodology-title { font-size: 2rem; }
            .contact-intro-title { font-size: 1.8rem; }
            .contact-card { padding: 40px 20px; }
            .paypal-button {
                padding: 0.85rem 1.75rem;
                font-size: 1rem;
                gap: 8px;
            }
            .paypal-button i {
                font-size: 1.1rem;
            }

        }


