    /* Fixed Header Styles */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        body {
            padding-top: 80px; 
        }

        @media (max-width: 1024px) {
            body {
                padding-top: 70px; 
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 65px; 
            }
            
            .fixed-header {
                height: 65px; 
            }
            
            .logo-container img {
                height: 60px !important; 
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 60px; 
            }
            
            .fixed-header {
                height: 60px;
            }
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
            z-index: 1001;
            overflow-y: auto;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .mobile-sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000; 
        }

        .mobile-sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-item {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.3s ease;
        }

        .mobile-accordion-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 12px 16px;
            border-bottom: 1px solid #f3f4f6;
            text-align: left;
            transition: all 0.3s ease;
        }

        .mobile-accordion-content {
            background: #f9fafb;
            border-bottom: 1px solid #f3f4f6;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .mobile-accordion-content.active {
            max-height: 500px;
        }

        .mobile-subnav-item {
            display: block;
            padding: 10px 16px 10px 40px;
            border-bottom: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .mobile-subnav-item:hover {
            background: #edf2f7;
        }

        .logo-container img {
            height: 75px;
            width: auto;
            transition: height 0.3s ease;
        }

        /* Bigger logo in mobile sidebar */
        .mobile-sidebar .logo-container img {
            height: 70px !important; /* Bigger logo in mobile menu */
            width: auto;
        }

        /* Ensure subnav items are visible when not hidden */
        .mobile-accordion-content:not(.hidden) {
            display: block;
        }

        /* Smooth scrolling for anchor links */
        html {
            scroll-behavior: smooth;
        }

        /* Ensure dropdowns appear above other content */
        .relative.group .absolute {
            z-index: 1002;
        }

        /* Mobile header content alignment */
        .mobile-header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 100%;
        }

        /* Compact mobile buttons */
        .mobile-cta-buttons {
            /*display: flex;*/
            align-items: center;
            gap: 8px;
        }

        .compact-button {
            padding: 6px 12px !important;
            font-size: 0.8rem !important;
            white-space: nowrap;
        }

        /* Mobile sidebar header styling */
        .mobile-sidebar-header {
            padding: 20px 16px;
            border-bottom: 2px solid #e5e7eb;
            background: white;
            text-align: center;
        }

        .mobile-sidebar-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }