        :root {
            --primary-blue: #355A79;
            --primary-orange: #C68D4A;
            --light-blue: #4A7BA7;
            --light-orange: #D4A574;
            --cream: #F8F6F2;
            --dark-gray: #2C2C2C;
            --light-gray: #F5F5F5;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
        }

        /* Foundation-style breakpoints */
        .container {
            width: 100%;
            max-width: 75rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Small: 0-39.9375em */
        @media screen and (max-width: 39.9375em) {
            .container { padding: 0 0.5rem; }
        }

        /* Medium: 40em-63.9375em */
        @media screen and (min-width: 40em) {
            .container { padding: 0 1rem; }
        }

        /* Large: 64em and up */
        @media screen and (min-width: 64em) {
            .container { padding: 0 2rem; }
        }

        /* Header */
        header {
            background: var(--white);
            color: var(--dark-gray);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: block;
            width: 240px;
            height: 240px;
            object-fit: contain;
            margin: 10px 0;
        }

        @media screen and (max-width: 39.9375em) {
            .logo {
                width: 140px;
                height: 140px;
                margin: 8px 0;
            }
        }

        @media screen and (min-width: 40em) and (max-width: 63.9375em) {
            .logo {
                width: 190px;
                height: 190px;
                margin: 9px 0;
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-close {
            display: none;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Mobile Navigation */
        @media screen and (max-width: 39.9375em) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(53, 90, 121, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-links.active {
                display: flex;
                opacity: 1;
                visibility: visible;
            }

            .mobile-menu {
                display: flex;
                z-index: 1001;
                position: relative;
            }

            .nav-links a {
                padding: 1rem 2rem;
                border: none;
                color: var(--white);
                font-size: 1.5rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                transition: all 0.3s ease;
                border-radius: 10px;
                text-decoration: none;
            }

            .nav-links a:hover,
            .nav-links a:focus {
                background: rgba(198, 141, 74, 0.2);
                color: var(--primary-orange);
                transform: scale(1.05);
                outline: 2px solid var(--primary-orange);
                outline-offset: 2px;
            }

            .nav-links a::after {
                display: none;
            }

            .mobile-close {
                position: absolute;
                top: 2rem;
                right: 2rem;
                background: none;
                border: none;
                color: var(--white);
                font-size: 2rem;
                cursor: pointer;
                padding: 0.5rem;
                border-radius: 50%;
                transition: all 0.3s ease;
                z-index: 1000;
                display: block;
            }

            .mobile-close:hover,
            .mobile-close:focus {
                background: rgba(198, 141, 74, 0.2);
                color: var(--primary-orange);
                outline: 2px solid var(--primary-orange);
                outline-offset: 2px;
                transform: scale(1.1);
            }

            /* Hamburger menu animation */
            .mobile-menu.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .mobile-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        /* Hero Section */
        .hero {
            background: var(--primary-blue);
            padding-top: calc(260px + 6rem);
            padding-bottom: 5rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        @media screen and (max-width: 39.9375em) {
            .hero {
                padding-top: calc(156px + 4rem);
                padding-bottom: 3rem;
            }
        }

        @media screen and (min-width: 40em) and (max-width: 63.9375em) {
            .hero {
                padding-top: calc(208px + 5rem);
                padding-bottom: 4rem;
            }
        }

        .hero-content {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media screen and (min-width: 40em) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        @media screen and (max-width: 39.9375em) {
            .hero-text h1 {
                font-size: 2.2rem;
            }
        }

        .hero-text p {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Open Sans', sans-serif;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(198, 141, 74, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(198, 141, 74, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Secondary button variant for light backgrounds */
        .btn-secondary-dark {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-secondary-dark:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-3px);
        }

        .hero-video {
            position: relative;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(53, 90, 121, 0.2);
            transition: transform 0.3s ease;
        }

        .hero-video:hover {
            transform: translateY(-5px);
        }

        .video-embed {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 20px;
        }

        /* About Section */
        .about {
            padding: 6rem 0;
            background: var(--white);
        }

        .about-content {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media screen and (min-width: 64em) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: var(--cream);
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .stat:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-orange);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background: var(--light-gray);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 3rem;
        }

        .services-grid {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(53, 90, 121, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(53, 90, 121, 0.2);
            border-color: var(--primary-orange);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--dark-gray);
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 0;
            background: var(--primary-blue);
            color: var(--white);
        }

        .contact-content {
            display: grid;
            gap: 3rem;
        }

        .contact-content a {
            color:#FFFFFF;
        }

        .contact-content a:hover {
            color:#F2F2F2;
        }

        @media screen and (min-width: 40em) {
            .contact-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact h2 {
            color: var(--primary-orange);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-orange);
            width: 30px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cream);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-orange);
            box-shadow: 0 0 20px rgba(198, 141, 74, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            gap: 2rem;
        }

        @media screen and (min-width: 40em) {
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
                gap: 4rem;
            }
        }

        .footer-section h3 {
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--light-gray);
            text-decoration: none;
            font-weight: 400;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: var(--primary-orange);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
            color: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            color: var(--light-gray);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Header scroll effect */
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }

        /* Features grid */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--cream);
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateX(5px);
        }

        .feature i {
            color: var(--primary-orange);
            font-size: 1.5rem;
        }

        .feature span {
            font-weight: 500;
        }