        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif; /* Modern, geometric font */
            background-color: #ffffff;
            color: #000000;
            overflow-x: hidden;
        }

        /* --- TYPOGRAPHY & COLORS --- */
        :root {
            --primary-black: #000000;
            --brand-gold: #F4B400; /* Adjusted for readability */
            --text-grey: #555555;
            --white: #ffffff;
        }

        /* Import Google Font */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

        /* --- NAVIGATION --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -1px;
            text-decoration: none;
            color: var(--primary-black);
        }
        
        .logo span {
            color: var(--brand-gold);
        }

        .nav-btn {
            background-color: var(--primary-black);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            background-color: var(--brand-gold);
            color: var(--primary-black);
        }

        /* --- HERO SECTION LAYOUT --- */
        .hero {
            max-width: 1400px;
            margin: 70px auto;
            padding: 40px 5% 100px; /* Extra bottom padding for floating card */
            position: relative;
        }

        /* Top Text Area Grid */
        .hero-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: end;
            margin-bottom: 40px;
            gap: 10px;
        }

        /* Headline Styling */
        h1 {
            font-size: 4rem;
            line-height: 1.1;
            font-weight: 800;
            color: var(--primary-black);
        }

        h1 .highlight {
            color: var(--brand-gold);
        }

        /* Sub-text Styling */
        .hero-subtext {
            color: var(--primary-black);
            font-size: 1rem;
            line-height: 1.65;
            max-width: 400px;
            justify-self: end; /* Pushes text to the right side */
            text-align: right;
        }

        /* --- THE PILL IMAGE CONTAINER --- */
        .pill-container {
            width: 100%;
            height: 500px;
            border-radius: 250px; /* Creates the stadium/pill shape */
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* The Image itself */
        .pill-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 50%; /* Adjusts focus to the plane */
            transition: transform 0.5s ease-out;
        }

        .pill-container:hover img {
            transform: scale(1.03); /* Subtle zoom on hover */
        }

        /* --- FLOATING INFO CARD --- */
        .floating-card {
            position: absolute;
            bottom: 40px; /* Overlaps the bottom of the section */
            left: 50%;
            transform: translateX(-50%);
            
            background: var(--white);
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 500px;
            width: 90%;
        }

        .card-icon {
            font-size: 32px;
            color: var(--brand-gold);
            flex-shrink: 0;
        }

        .card-text p {
            font-size: 0.9rem;
            color: var(--text-grey);
            line-height: 1.4;
        }
        
        .card-text strong {
            color: var(--primary-black);
            font-weight: 700;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 900px) {

            .hero {
            margin: 70px auto 0px;
            padding: 30px 5% 100px; /* Extra bottom padding for floating card */
        }
            .hero-header {
                grid-template-columns: 1fr; /* Stack text */
                gap: 10px;
                margin-bottom: 20px;
            }

            h1 {
                font-size: 2.5rem;
            }

            .hero-subtext {
                justify-self: start;
                text-align: left;
            }

            .hero-subtext p {
            color: var(--primary-black);
            font-size: .85rem;
            line-height: 1.65;
            }

            .pill-container {
                height: 350px;
                border-radius: 40px; /* Less rounded on mobile for more space */    
            }
            
            .floating-card {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin-top: -50px; /* Pull it up slightly over image */
                margin-left: auto;
                margin-right: auto;
            }

        }
