/* Maintain consistent branding with main site */
        :root {
            --primary-color: #060270;
            --secondary-color: #EE0E82;
            --accent-color: #FE9900;
            --light-bg: #f5f9ff;
        }
        
        .navbar {
            background-color: #060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: var(--accent-color);
            font-weight: 500;
        }
        
        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(0, 51, 102, 0.2), rgba(0, 51, 102, 0.2)), 
                        url('https://images.pexels.com/photos/32500692/pexels-photo-32500692.png?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
            margin-top:20px;
        }
        .contact-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Layout with sidebar */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            padding: 80px 0;
        }
        .sidebar {
            width: 40%;
            background-color: var(--light-bg);
            padding: 40px;
            height: 100%;
            position: sticky;
            top: 0;
        }
        .main-content {
            width: 60%;
            padding: 0 40px;
        }
        
        /* Sidebar content */
        .sidebar-section {
            margin-bottom: 40px;
        }
        .sidebar-title {
            color: var(--primary-color);
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .contact-icon {
            font-size: 24px;
            color: var(--secondary-color);
            margin-right: 15px;
            flex-shrink: 0;
        }
        .department-contact {
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .department-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .department-name {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        /* Main content styles */
        .banner-image {
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .form-label {
            font-weight: 600;
        }
        .required-field::after {
            content: '*';
            color: red;
            margin-left: 4px;
        }
        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        /* FAQ and Connect section */
        .combined-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        .faq-connect-container {
            display: flex;
            flex-wrap: wrap;
        }
        .faq-column, .connect-column {
            width: 50%;
            padding: 0 15px;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 51, 102, 0.05);
            color: var(--primary-color);
            font-weight: 600;
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0, 51, 102, 0.25);
        }
        .social-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            font-size: 20px;
            transition: all 0.3s;
        }
        .social-button:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            color: white;
        }
        
        /* Consistent with main site */
        footer {
            background-color:#060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: var(--accent-color);
            margin-bottom: 5px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
        .section-title {
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .sidebar, .main-content {
                width: 100%;
                position: static;
            }
            .sidebar {
                padding: 30px 15px;
            }
            .main-content {
                padding: 30px 15px;
            }
            .faq-column, .connect-column {
                width: 100%;
            }
            .connect-column {
                margin-top: 40px;
            }
        }
        
        /* Interactive elements */
        .contact-card {
            transition: all 0.3s;
            cursor: pointer;
        }
        .contact-card:hover {
            transform: scale(1.03);
        }
        .floating-action {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 100;
        }
        .chat-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--secondary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        .chat-button:hover {
            transform: scale(1.1);
            background: var(--accent-color);
        }
        /* Top Bar Styles */
    .top-bar {
        background-color: #EE0E82; /* Dark blue to match navbar */
        color: white;
        padding: 10px 0;
        font-size: 16px;
        font-weight: 700;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }