        body {
                        background: rgba(180, 180, 180, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .video-container {
            position: fixed;
            top: 0px;
            left: 0;
            width: 100%;
            height: 50vh;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw; /* 16:9 aspect ratio */
            max-height: 200vh;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50vh;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 1));
        }

        .overlay::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 35%; /* Covers about 1/3 */
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 98, 149, 0.9), rgba(255, 255, 255, 1));
            clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
        }

        .overlay-content {
            position: fixed;
            top: 160px;
            z-index: 20;            
            width: 100%;
            padding: 5px 10px;  
            color: #d4af37;
            font-size: 70px;
            left: 40px;
            line-height: 65px;
            text-shadow: 1px 1px 2px black;
            font-weight: bold;
        }
        
        .nav-content {
            position: absolute;
            z-index: 30;
            text-align: center;
            width: 100%;
            padding: 5px 10px;            
            background-color: #808588;
            border-top: 3px solid #173e8b;
            border-bottom: 3px solid #173e8b;
        }

        .content {
            position: absolute;
            top: 330px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 25;
            background: rgba(255, 255, 255, 0);
            padding: 20px;
            text-align: center;
            width: 100%;
            max-width: 1800px;
            border-radius: 10px;
            min-height: 500px;
            padding-bottom: 340px; /* Ensure space for angled section and footer */
        }

        nav {
            background-color: #808588 !important;
            color: #fff !important;        
        }

        .hero {
            position: relative;
            width: 66.5%;
            height: 300px; /* Adjust as needed */
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 35%; /* Covers about 1/3 */
            height: 100%;
            background: rgba(135, 206, 235, 0.6); /* Adjust color & opacity */
            clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
        }

        .hero-content {
            position: relative;
            color: white !important;
            text-align: left;
            padding: 70px 40px;
        }

        .hero-text {
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: bold;
            color: #fff;
        }

        .hero-text p {
            font-size: 1.5rem;
            margin-top: 50px;
        }

        .hero-text a {
            display: inline-block;
            margin-top: 50px;
            padding: 10px 30px;
            background-color: #fff;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        .hero-text a:hover {
            background-color: #fff;
        }

        .angled-section {
            position: fixed;
            bottom: 40px; /* Adjust to fit footer */
            left: 0;
            background-color: #173e8b; /* Light Blue */
            height: 300px; /* Adjust height as needed */
            width: 100%;
            overflow: hidden;
            
        }
        .angled-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px; /* Adjust the height of the angled area */
            background-color: white;
            clip-path: polygon(0% 0%, 100% 100%, 100% 0%);            
        }
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px; /* Footer height */
            background-color: #333;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            z-index: 30;
        }

        .overlay-content-mobile {
            display: none;
        }

        /* Dropdown tab */
        .dropdown-tab {
            position: absolute;
            top: 100%;  /* Positions the tab below the nav item */
            left: 75%;
            background-color: #808588;
            padding: 10px;
            white-space: nowrap;
            z-index: 10;
            border-radius: 0 0 10px 10px;  /* Rounded bottom corners */
            border-bottom: 3px solid #173e8b;
            border-left: 3px solid #173e8b;
            border-right: 3px solid #173e8b;
        }

        /* Link inside the tab */
        .dropdown-tab a {
            color: white;
            text-decoration: none;
            padding: 5px 10px;
            display: block;
        }

        .fn-logo {
            width: 300px;
        }

        .youtubeiframe {                
            width: 500px;
            height: 300px;
        }

        .uk-card-default {
            background-color: #dddcd9;
        }

        @media screen and (max-width: 480px) {

            .video-container {
                position: fixed;
                top: -40px;
                left: 0;
                width: 100%;
                height: 45vh;
                overflow: hidden;
            }

            .overlay {  
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 38vh;
                background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 1));
            }

            .overlay::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 35%; /* Covers about 1/3 */
                height: 100%;
                background: linear-gradient(to bottom, rgba(0, 98, 149, 0.9), rgba(255, 255, 255, 1));
                clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
            }

            .overlay-content {
                display: none;
            }

            .overlay-content-mobile {
                display: block;
                color: #d4af37;
                font-size: 30px;
                text-align: center;
                text-shadow: 1px 1px 2px black;
            }

            .content {
                position: absolute;
                top: 150px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10;
                background: rgba(255, 255, 255, 0);
                padding: 20px;
                text-align: center;
                width: 100%;
                max-width: 1800px;
                border-radius: 10px;
                min-height: 500px;
                padding-bottom: 340px; /* Ensure space for angled section and footer */
            }

            .nav-content {
                align: middle !important;
            }

            .dropdown-tab {
                top: 100%;  /* Positions the tab below the nav item */
                left: 75%;
            }

            .fn-logo {
                width: 200px;
            }

            .uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
                min-height: 0px;
            }

            .youtubeiframe {                
                width: 310px;
                height: 200px;
            }


        }