
       /* --- SHARED CSS VARIABLES --- */
        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --dark: #0f172a;
            --slate: #64748b;
            --light-bg: #f8fafc;
            --white: #ffffff;
            --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--dark);
            line-height: 1.6;
        }

       
 /* --- NAVIGATION --- */
        .header-wrapper { 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            width: 100%; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
        }
        
        /* UPDATED TOP BAR FOR RESPONSIVENESS */
        .top-bar {
            background: var(--dark); 
            color: white; 
            padding: 8px 5%;
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            font-size: 0.75rem;
            flex-wrap: wrap; /* Allows items to move to next line if space is tight */
            gap: 10px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.98); 
            backdrop-filter: blur(10px);
            padding: 15px 5%; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
        }
        .logo img {
            height: 45px; /* Adjust this value to make your logo bigger or smaller */
            width: auto;  /* Maintains aspect ratio */
            display: block;
            transition: transform 0.3s ease;
       }

        .logo:hover img {
        transform: scale(1.05); /* Subtle pop effect on hover */
       }

/* Ensure the logo container doesn't have extra padding */
.logo {
    display: flex;
    align-items: center;
    padding: 0;
}

        .menu-toggle { 
            display: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
            color: var(--dark);
         }

        .nav-links { 
            display: flex; 
            list-style: none; 
            gap: 2rem; 
            align-items: center;
         }
        .nav-link { 
            text-decoration: none; 
            color: var(--dark); 
            font-weight: 700; 
            font-size: 0.9rem; 
            transition: 0.3s; 
        }
        .nav-link:hover, .nav-link.active { color: var(--dark); }

        /* --- DROPDOWN ENHANCEMENTS --- */
        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; 
            top: 100%; 
            left: 0; 
            background: white;
            min-width: 240px; 
            box-shadow: var(--shadow-lg); 
            border-radius: 12px;
            opacity: 0; 
            visibility: hidden; 
            transform: translateY(10px);
            transition: 0.3s; 
            list-style: none; 
            padding: 15px 0; 
            border: 1px solid #eee;
        }
        .dropdown:hover > .dropdown-menu { 
            opacity: 1; 
            visibility: visible; 
            transform: translateY(0); 
        }
        
        .dropdown-menu li { 
            position: relative; 
        
        }
        .dropdown-menu li a {
            padding: 10px 25px; 
            display: block; 
            text-decoration: none;
            color: var(--slate); 
            font-size: 0.85rem; 
            font-weight: 600; 
            transition: 0.2s;
        }
        .dropdown-menu li a:hover { 
            background: #f1f5f9; 
            color: var(--primary);
         }

        .submenu {
            position: absolute; 
            left: 100%; 
            top: 0; 
            background: white;
            min-width: 200px; 
            box-shadow: var(--shadow-lg); 
            border-radius: 12px;
            opacity: 0; 
            visibility: hidden; 
            list-style: none; 
            padding: 10px 0; 
            border: 1px solid #eee;
        }
        .dropdown-menu li:hover > .submenu {
             opacity: 1; 
             visibility: visible; 
            }

        /* --- TERMS CONTENT SECTION --- */
      .terms-header {
            background: linear-gradient(rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 10%;
            text-align: center;
        }

        .terms-container {
            max-width: 900px;
            margin: -50px auto 80px;
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            position: relative;
            z-index: 10;
        }

        .terms-section {
            margin-bottom: 35px;
        }

        .terms-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary);
            padding-left: 15px;
        }

        .terms-section p {
            color: var(--slate);
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .last-updated {
            font-style: italic;
            color: var(--slate);
            font-size: 0.85rem;
            margin-bottom: 30px;
            display: block;
        }
  /* --- FOOTER --- */
        footer { 
            background: var(--dark); 
            color: #94a3b8; 
            padding: 100px 10% 40px; 
        }
        .footer-grid { 
            display: grid; 
            grid-template-columns: 2fr 1fr 1fr 1.5fr; 
            gap: 60px; 
        }
        .footer-col h4 { 
            color: var(--white); 
            font-size: 1.2rem; 
            margin-bottom: 30px; 
        }
        .footer-col ul { 
            list-style: none; 
        }
        .footer-col ul li { 
            margin-bottom: 15px; 
        }
        .footer-col a { 
            color: #94a3b8; 
            text-decoration: none; 
            transition: 0.3s; 
        }
        .footer-col a:hover { 
            color: var(--primary); 
            padding-left: 5px; 
        }

        .newsletter { 
            display: flex; 
            margin-top: 20px; 
        }
        .newsletter input { 
            padding: 15px; 
            border-radius: 12px 0 0 12px; 
            border: none; 
            background: #1e293b; 
            color: white; 
            width: 100%; 
        }
        .newsletter button { 
            padding: 15px 25px;
            border-radius: 0 12px 12px 0; 
            border: none; 
            background: var(--primary); 
            color: white; 
            font-weight: bold; 
            cursor: pointer; 
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        
        @media (max-width: 1024px) {
            .footer-grid { 
                grid-template-columns: 1fr 1fr; 
            }
            .name-row { 
                grid-template-columns: 1fr 1fr;
             }
        }

        @media (max-width: 768px) {
            /* RE-ENABLED TOP BAR WITH MOBILE OPTIMIZATION */
            .top-bar { 
                justify-content: center; 
                text-align: center;
                flex-direction: column; /* Stack Email and Phone */
                padding: 10px 5%;
            }
            
            .menu-toggle { 
                display: block;
             }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: 0.4s ease-in-out;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                max-height: 100vh;
                padding: 20px 0;
                overflow-y: auto;
            }

            .nav-links li { 
                width: 100%; 
            }
            .nav-link { 
                display: block; 
                padding: 15px 5%; 
                border-bottom: 1px solid #f1f5f9; 
            }

            .dropdown-menu, .submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: #f8fafc;
                padding-left: 20px;
            }

            .dropdown.active-mobile > .dropdown-menu,
            .dropdown-menu li.active-mobile > .submenu {
                display: block;
            }
            

            .contact-hero h1 { 
                font-size: 2.2rem !important; 
            }
            .contact-container { 
                padding: 25px; 
                margin-top: -30px; 
            }
            
            .name-row { 
                grid-template-columns: 1fr; 
            } 
            
            .footer-grid { 
                grid-template-columns: 1fr; 
                gap: 30px; 
                text-align: center; 
            }
            .footer-col div { 
                justify-content: center;
             }
        }



        .dropdown { position: relative; }
        .dropdown-menu {
            position: absolute; top: 100%; left: 0; background: white;
            min-width: 240px; box-shadow: var(--shadow-lg); border-radius: 12px;
            opacity: 0; visibility: hidden; transform: translateY(10px);
            transition: 0.3s; list-style: none; padding: 15px 0; border: 1px solid #eee;
        }

        .dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .dropdown-menu li { position: relative; }
        .dropdown-menu li a {
            padding: 10px 25px; display: block; text-decoration: none;
            color: var(--slate); font-size: 0.85rem; font-weight: 600; transition: 0.2s;
        }
        .dropdown-menu li a:hover { background: #f1f5f9; color: var(--primary); }

        .submenu {
            position: absolute; left: 100%; top: 0; background: white;
            min-width: 200px; box-shadow: var(--shadow-lg); border-radius: 12px;
            opacity: 0; visibility: hidden; list-style: none; padding: 10px 0; border: 1px solid #eee;
        }
        .dropdown-menu li:hover > .submenu { opacity: 1; visibility: visible; }

        /* --- MOBILE RESPONSIVE (TOP-DOWN MENU) --- */
        @media (max-width: 768px) {
            .top-bar { justify-content: center; text-align: center; flex-direction: column; padding: 10px 5%; }
            .menu-toggle { display: block; }

            .nav-links {
                position: absolute;
                top: 100%; /* Sits below the navbar */
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                display: none; /* Hidden by default */
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                max-height: 80vh;
                overflow-y: auto;
            }

            .nav-links.active { display: flex; }

            .nav-links li { width: 100%; }
            .nav-link { 
                display: flex; justify-content: space-between;
                padding: 15px 5%; border-bottom: 1px solid #f1f5f9; 
            }

            /* Accordion Sub-menus */
            .dropdown-menu, .submenu {
                position: static; opacity: 1; visibility: visible; transform: none;
                box-shadow: none; display: none; background: #f8fafc; padding: 0;
                width: 100%; border: none;
            }

            /* Use existing class from your script to show dropdowns */
            .dropdown.active-mobile > .dropdown-menu,
            .dropdown-menu li.active-mobile > .submenu {
                display: block;
            }

            .dropdown-menu li a { padding-left: 10%; border-bottom: 1px solid #edf2f7; }
            .submenu li a { padding-left: 15%; background: #f1f5f9; }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .navbar { padding: 15px 5%; }
            .nav-links { display: none; } /* Simplified for this snippet */
            .terms-container { margin: 20px; padding: 25px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
        }
   