
        :root {
            --primary-blue: #275474;
            --accent-orange: #FE8001;
        }

        body { font-family: 'Segoe UI', sans-serif; color: #444; }

        /* Navigation Style (Synced) */
        .navbar { 
            background-color: white !important; 
            border-bottom: 4px solid var(--accent-orange);
            padding: 10px 0;
        }
        .navbar-brand img { max-height: 70px; width: auto; }
        .nav-link { 
            color: var(--primary-blue) !important; 
            font-weight: 600; 
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .nav-link:hover { color: var(--accent-orange) !important; }
        .dropdown-item:hover { background-color: var(--accent-orange); color: white; }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(39, 84, 116, 0.9), rgba(39, 84, 116, 0.9)), 
                        url('https://images.unsplash.com/photo-1523240715639-99f840e9f28b?auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 60px 0;
            border-bottom: 8px solid var(--accent-orange);
        }

        /* Contact Section Styling */
        .map-container {
            height: 450px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
        }
        .contact-sidebar {
            background-color: var(--primary-blue);
            color: white;
            padding: 40px;
            border-radius: 15px;
            height: 100%;
        }
        .info-title { color: var(--accent-orange); font-weight: bold; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 5px; }
        .info-detail { margin-bottom: 25px; }

        /* Footer Style (Synced) */
        .footer-main { background-color: var(--primary-blue); color: #ffffff; padding: 60px 0 20px; border-top: 6px solid var(--accent-orange); }
        .footer-header { color: var(--accent-orange); font-weight: 700; margin-bottom: 25px; text-transform: uppercase; font-size: 1.1rem; }
        .footer-links ul { list-style: none; padding: 0; }
        .footer-links ul li a { color: #e0e0e0; text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
        .footer-links ul li a:hover { color: var(--accent-orange); padding-left: 5px; }
        .contact-item { display: flex; margin-bottom: 15px; font-size: 0.9rem; }
        .contact-item svg { margin-right: 12px; flex-shrink: 0; }
        .footer-bottom { background-color: rgba(0,0,0,0.2); padding: 15px 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
    