        /* 1. HEADER LAYOUT */
        header {
            background: #FFFFFF;
            border-bottom: 4px solid #FF7043; /* Accent border */
            position: relative;
            z-index: 1000;
            padding: 10px 0;
        }

        .header-container {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 0 20px;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        /* 2. DESKTOP NAV (Right Side) */
        .desktop-nav {
            display: flex !important;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap; /* FIX: Allows items to wrap if too many */
            justify-content: flex-end;
        }

        .desktop-nav a.nav-link {
            text-decoration: none;
            color: #00695C; /* Teal Dark */
            font-weight: 700;
            font-size: 16px;
            font-family: 'Quicksand', sans-serif;
            white-space: nowrap;
            padding: 8px 12px; /* Slightly larger clickable area */
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            position: relative; /* Needed for dropdown positioning context */
        }
        
        .desktop-nav a.nav-link:hover {
            color: #FF7043; /* Orange */
            background-color: rgba(255, 112, 67, 0.1);
        }

        /* --- DROPDOWN STYLES (Fixed Positioning & Width) --- */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            
            /* FIX: Larger Width */
            min-width: 260px; 
            
            box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.15);
            z-index: 9999;
            border-radius: 8px;
            border-top: 4px solid #FF7043;
            padding: 10px 0;
            
            /* FIX: Moved down to avoid touching the menu item */
            top: calc(100% + 10px); 
            left: 0;
        }
        
        /* Add a small invisible bridge so the mouse doesn't lose hover when moving down */
        .dropdown-content::before {
            content: "";
            position: absolute;
            top: -15px;
            left: 0;
            width: 100%;
            height: 15px;
            background: transparent;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeIn 0.2s ease-in-out;
        }

        .dropdown-content a {
            color: #444;
            padding: 10px 15px; /* Reduced padding */
            text-decoration: none;
            display: block;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s;
            
            /* FIX: Spacing so hover doesn't touch edges */
            margin: 5px 8px; 
            border-radius: 6px;
            border-bottom: none;
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #FFF3E0; /* Light orange tint */
            color: #E64A19;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 3. HAMBURGER BUTTON (Hidden on Desktop) */
        .hamburger-menu {
            display: none !important;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 5px;
        }

        .hamburger-menu span {
            display: block;
            width: 28px;
            height: 3px;
            background-color: #00695C;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* 4. MOBILE MENU (Hidden by default) */
        .mobile-nav {
            display: none !important;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            border-bottom: 4px solid #FF7043;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            z-index: 999;
        }

        .mobile-nav.active {
            display: flex !important;
        }

        .mobile-nav a {
            padding: 15px 10px;
            text-decoration: none;
            color: #00695C;
            font-weight: 700;
            border-bottom: 1px solid #eee;
            font-size: 18px;
            display: block;
        }
        
        /* --- MOBILE SUBMENU CSS --- */
        .mobile-submenu-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            border-bottom: 1px solid #eee;
        }
        .mobile-dropdown {
            background-color: #f9f9f9;
            display: none;
            padding-left: 20px;
        }
        .mobile-dropdown a {
            font-size: 16px;
            color: #666;
            border-bottom: 1px solid #f0f0f0;
        }
        .rotate-icon { transform: rotate(180deg); }

        /* 5. RESPONSIVE RULES (< 992px) */
        @media (max-width: 1200px) {
            .desktop-nav { display: none !important; }
            .hamburger-menu { display: flex !important; }
            .logo-container svg { width: 220px !important; height: auto !important; }
        }

        .hamburger-menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .hamburger-menu.open span:nth-child(2) { opacity: 0; }
        .hamburger-menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        
        /* --- SEARCH BAR STYLES --- */
        .desktop-search-form {
            display: flex; align-items: center; background: #f5f5f5;
            border-radius: 25px; padding: 5px 15px; border: 1px solid #e0e0e0; margin-left: 10px;
        }
        .desktop-search-form input {
            border: none; background: transparent; outline: none; width: 140px;
            font-size: 16px; color: #00695C; font-family: 'Quicksand', sans-serif;
        }
        .desktop-search-form button {
            background: none; border: none; cursor: pointer; font-size: 1.2em; padding: 0; margin-left: 5px;
            transition: transform 0.2s;
        }
        .desktop-search-form button:hover { transform: scale(1.1); }

        .mobile-search-form { display: flex; padding: 10px 0; margin-bottom: 15px; border-bottom: 1px solid #eee; gap: 10px; }
        .mobile-search-form input { flex-grow: 1; padding: 12px 15px; border-radius: 8px; border: 2px solid #eee; font-size: 16px; }
        .mobile-search-form button { background: #FF7043; color: white; border: none; padding: 0 20px; border-radius: 8px; font-weight: bold; font-family: 'Quicksand', sans-serif; }