        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200&family=Roboto:wght@300;400&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200&display=swap');

        :root {
            --dark-red: #330001;
            --red: #be181a;
            --yellow: #fab736;
            --light-yellow: #fff5e2;
            --grey: #fafafa;
            --dark-grey: #b7b7b7;
            --white: #ffffff;
            --trans-white: rgba(255, 255, 255, 0.2);
            --max-width: 1100px;
            --max-width-Laptop:100%;
            --margin-mobile: 0 1.5em;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body{
            overflow-x: hidden;
        }

        .container{
            max-width: var(--max-width);
            margin: 0 auto;
        }

        section{
            margin-top: 1.5em;
        }

        /* Navigation Styles */
        div.nav{
            background-color: var(--white);
            position:sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 65px;
            max-width: var(--max-width);
            margin: auto;
        }

        .landing-mobile-css{
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding-top: 17px;
        }

        nav h2.logo img{
            width: 70px;
        }
        
        nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        nav ul li a {
            text-decoration: none;
            color: black;
            transition: all 500ms;
            font-size: 20px;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            font-size: 16px;
        }

        nav ul li a.active {
            color: var(--red);
            font-weight: 700;
        }

        nav ul li a:hover {
            text-decoration: none;
            color: var(--red);
        }

        nav h2.get_a_quote a {
            text-decoration: none;
            color: #fff;
            background-color: var(--red);
            border-radius: 5px;
            padding: 10px 15px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
        }

        nav h2.get_a_quote a:hover {
            background-color: var(--yellow);
        }

        nav h2#menu{
            display: none;
        }

        /* Mobile Nav */
        .hamburger{
            height: 65px;
            display: none;
        }

        .hamburger #menu {
            font-size: 35px; 
            animation: animatezoom-rotate1 0.4s ease-out;
        }

        @keyframes animatezoom-rotate1 {
            from {
                transform: rotate(360deg);
            }
            to {
                transform: rotate(0deg);
            }
        }

        .hamburger #menu-close{
            font-size:300%;
            animation: animatezoom-rotate 0.4s ease-in;
        }

        @keyframes animatezoom-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .drop-down{
            display: none;
            background: #2d0606f5;
            backdrop-filter: blur(100px);
            position: fixed;
            padding-top: 10%;
            z-index: 100;
            width: 100%;
            height: 43%;
            font-family: poppins;
            text-align: center;
            -webkit-animation: animatezoom 0.4s ease-out;
            animation: animatezoom 0.4s ease-in;
        }

        @-webkit-keyframes animatezoom {
            from{
                -webkit-transform: scale(0);
            }
            to {
                -webkit-transform: scale(1);
            }
        }

        @keyframes animatezoom {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }
        
        .drop-down li a{
            text-decoration: none;
            font-size: 300%;
            color: #fff;
            text-align: center;
            line-height: 230%;
        }

        .drop-down li a.active{
            color: #fab736;
        }

        /* Academy specific styles */
        .academy-hero {
            background: linear-gradient(135deg, #330001 0%, #be181a 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .academy-hero h1 {
            font-size: 3.5rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .academy-hero p {
            font-size: 1.3rem;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background-color: #fab736;
            color: #330001;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .courses-section {
            padding: 80px 0;
            background-color: #fafafa;
        }
        
        .section-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            color: #330001;
            margin-bottom: 3rem;
        }
        
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .course-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #be181a;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .course-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #be181a, #fab736);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .course-icon i {
            font-size: 24px;
            color: white;
        }
        
        .course-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: #330001;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .course-description {
            font-family: 'Poppins', sans-serif;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .course-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .course-duration, .course-price {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        .course-price {
            font-size: 1.3rem;
            color: #be181a;
        }
        
        .course-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .course-features li {
            font-family: 'Poppins', sans-serif;
            color: #666;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        
        .course-features li:before {
            content: "✓";
            color: #be181a;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .enroll-btn {
            background-color: #be181a;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: background-color 0.3s ease;
            display: inline-block;
            width: 100%;
            text-align: center;
        }
        
        .enroll-btn:hover {
            background-color: #330001;
        }

        /* Enhanced Testimonials Section with Video Support */
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background: #fafafa;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        /* Video Testimonial Styles */
        .video-testimonial {
            background: linear-gradient(135deg, #330001, #be181a);
            color: white;
            border: 3px solid #fab736;
        }

        .video-testimonial::before {
            content: '';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            background: #fab736;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-testimonial::after {
            content: '▶';
            position: absolute;
            top: 15px;
            right: 20px;
            color: #330001;
            font-size: 12px;
            font-weight: bold;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 200px;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            background: #000;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .video-container:hover .video-thumbnail {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(250, 183, 54, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid white;
        }

        .play-button:hover {
            background: #fab736;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button i {
            color: #330001;
            font-size: 24px;
            margin-left: 3px;
        }

        .video-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
        }

        .modal-content {
            position: relative;
            margin: 5% auto;
            width: 90%;
            max-width: 800px;
        }

        .close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        .close:hover {
            color: #fab736;
        }

        .modal-video {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 8px;
        }

        .testimonial-text {
            font-family: 'Poppins', sans-serif;
            font-style: italic;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .video-testimonial .testimonial-text {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .testimonial-author {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: #330001;
            margin-bottom: 5px;
        }

        .video-testimonial .testimonial-author {
            color: white;
        }
        
        .testimonial-role {
            font-family: 'Poppins', sans-serif;
            color: #be181a;
            font-size: 0.9rem;
        }

        .video-testimonial .testimonial-role {
            color: #fab736;
        }
        
        .stars {
            color: #fab736;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .video-label {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #fab736;
            color: #330001;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        /* Academy Stats */
        .academy-stats {
            padding: 60px 0;
            background: #330001;
            color: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stat-item h3 {
            font-size: 3rem;
            font-family: 'Poppins', sans-serif;
            color: #fab736;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
        }

        .next-cohort-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #330001 0%, #be181a 100%);
            color: white;
            text-align: center;
        }
        
        .cohort-info {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .cohort-date {
            font-size: 2.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .cohort-details {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .payment-info {
            background: #fff5e2;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            margin-top: 50px;
            border-left: 4px solid #fab736;
        }
        
        .payment-info h3 {
            font-family: 'Poppins', sans-serif;
            color: #330001;
            margin-bottom: 15px;
        }
        
        .payment-info p {
            font-family: 'Poppins', sans-serif;
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            padding: 2em 0;
            background-color: #2D0606;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            width: 100%;
        }

        footer .footer-contents {
            height: 55vh;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        footer .footer-contents article h3 {
            margin-bottom: 1.7em;
        }
        
        footer .footer-contents article h3.address {
            position: relative;
            top: -2em;
        }

        footer .footer-contents article ul {
            list-style: none;
            line-height: 30px;
        }

        footer .footer-contents article ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 17px;
            font-style: oblique;
            transition: all 500ms;
        }
        
        footer .footer-contents article ul li a:hover {
            color: var(--yellow);
        }
        
        footer .copyright {
            display: flex;
            justify-content: center;
            gap: 100px;
            height: 40px;
            align-items: center;
        }

        footer .copyright-mobile{
            display: none;
        }

        /* Mobile responsiveness */
        @media (max-width: 1024px) {
            .container {
                max-width: var(--max-width-Laptop);
                margin: 0 auto;
                margin: var(--margin-mobile);
            }
            
            nav {
                max-width: var(--max-width-Laptop);
            }

            nav ul {
                gap: 15px;
            }

            nav ul li a {
                font-size: 14px;
            }

            nav h2.get_a_quote a {
                border-radius: 3px;
                padding: 5px 10px;
                font-size: 12px;
                position: relative;
                right: 2em; 
                top: -3px;
            }

            article#address h3.address{
                top: -1.3em;
            }

            article#address p.address{
                width: 250px;
            }
        }

        @media (max-width: 770px) {
            nav ul{
                display: none;
            }

            nav h2.get_a_quote a{
                display: none;
            }

            nav h2#menu {
                display: block;
            }

            .hamburger{
                display: grid;
                align-content: center;
                font-family: poppins;
                margin-right: 5%;
            }

            .hamburger #menu{
                display:block;
            }

            .hamburger #menu-close{
                display: none;
            }

            .hamburger #menu-close.active{
                display: block;
            }

            .hamburger #menu.active{
                display: none;
            }

            .drop-down.active{
                display: block;
                font-family: poppins;
            }

            .drop-down{
                height: 80%;
            }

            .drop-down li a{
                line-height: 200%;
                font-size: 180%;
            }

            footer .footer-contents{
                margin: var(--margin-mobile);
            }

            footer article#address{
                display: none;
            }

            footer .copyright {
                display: none;
            }

            footer .copyright-mobile{
                display: block;
            }

            footer .copyright-mobile div{
                display: flex;
                justify-content: center;
                gap: 50px;
            }

            footer .copyright-mobile h2{
                margin: 2em 0;
                text-align: center;
            }

            .academy-hero h1 {
                font-size: 2.5rem;
            }
            
            .academy-hero p {
                font-size: 1.1rem;
            }
            
            .courses-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .course-card {
                padding: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cohort-date {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                width: 95%;
                margin: 10% auto;
            }

            .modal-video {
                height: 250px;
            }
        }

        @media (max-width: 520px) {
            nav h2.logo img{
                width: 50px;
            }

            footer .footer-contents {
                height: fit-content;
                padding: 5rem 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .academy-hero {
                padding: 60px 0;
            }
            
            .academy-hero h1 {
                font-size: 2rem;
            }
            
            .courses-section, .testimonials-section, .next-cohort-section {
                padding: 60px 0;
            }
            
            .cohort-info {
                padding: 30px 20px;
            }

            .video-container {
                height: 150px;
            }

            .play-button {
                width: 50px;
                height: 50px;
            }

            .play-button i {
                font-size: 20px;
            }
        }

        @media (max-width: 435px) {
            div.nav{
                width: 100%;
                overflow-x: hidden;
            }
            
            footer h3{
                font-size: 12px;
            }

            footer .footer-contents article ul li a{
                font-size: 13px;
                font-weight: 100;
            }

            footer div.copyright-mobile h2{
                font-size: 16px;
            }
        }