    /* Custom color palette matching the logo */
    :root {
        --primary-navy: #1a365d;
        --primary-blue: #2563eb;
        --accent-gray: #6b7280;
        --light-gray: #f7fafc;
        --dark-navy: #0f172a;
    }

    html {
        scroll-behavior: smooth;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .hero-bg {
        background-image: linear-gradient(rgba(26, 54, 93, 0.85), rgba(15, 23, 42, 0.75)), 
                            url("images/kodiak_front.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        min-height: 100vh;
        padding-top: 100px;
    }
    
    
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn 0.8s ease-out forwards;
    }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .card-hover {
        transition: all 0.3s ease;
    }
    
    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #6b7280, #374151);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    @keyframes bounce {
        0%, 20%, 53%, 80%, 100% {
            transform: translate3d(0,0,0);
        }
        40%, 43% {
            transform: translate3d(0, -10px, 0);
        }
        70% {
            transform: translate3d(0, -5px, 0);
        }
        90% {
            transform: translate3d(0, -2px, 0);
        }
    }
    
    .animate-bounce {
        animation: bounce 2s infinite;
    }
    
    .glass {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-menu.open {
        max-height: 500px;
    }
    
    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: currentColor;
        margin: 6px 0;
        transition: 0.3s;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    .toast {
        position: fixed;
        top: 10px;
        right: 10px;
        background: #10b981;
        color: white;
        padding: 16px 24px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .toast.show {
        transform: translateX(0);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #1a365d, #2563eb);
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(26, 54, 93, 0.3);
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, #6b7280, #374151);
        transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(107, 114, 128, 0.3);
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .logo-container {
        max-width: 90px;
        height: auto;
    }
    
    .logo-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .navy-text {
        color: #1a365d;
    }
    
    .gray-accent {
        color: #6b7280;
    }
    
    .navy-bg {
        background-color: #1a365d;
    }
    
    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }
        
        .hero-title {
            display: block;
        }
        
        .logo-container {
            max-width: 100px;
        }
    }
