:root {
            --primary-blue: #0066a1;
            --secondary-green: #2e7d32;
            --accent-gold: #d4af37;
            --light-blue: #e3f2fd;
            --dark-gray: #333333;
            --medium-gray: #666666;
            --light-gray: #f5f5f5;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 102, 161, 0.85), rgba(46, 125, 50, 0.8)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            margin-top: 76px;
        }
        .nav-shadow {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .section-padding {
            padding: 80px 0;
        }
        .bg-light-custom {
            background-color: var(--light-blue);
        }
        .feature-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #005187;
            border-color: #005187;
            transform: translateY(-2px);
        }
        .btn-secondary-custom {
            background-color: var(--secondary-green);
            border-color: var(--secondary-green);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-secondary-custom:hover {
            background-color: #256029;
            border-color: #256029;
            transform: translateY(-2px);
        }
        .department-card {
            border-left: 5px solid var(--primary-blue);
            transition: all 0.3s ease;
        }
        .department-card:hover {
            border-left-color: var(--accent-gold);
            background-color: #f8f9fa;
        }
        .staff-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .staff-card:hover {
            transform: scale(1.03);
        }
        .staff-img {
            height: 280px;
            object-fit: cover;
        }
        .testimonial-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .testimonial-text {
            font-style: italic;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid var(--accent-gold);
        }
        .contact-info-box {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        footer {
            background-color: #1a1a1a;
            color: #cccccc;
        }
        footer a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .footer-bottom {
            background-color: #111111;
            padding: 20px 0;
            border-top: 1px solid #333;
        }
        .friendlink-container {
            background-color: #2a2a2a;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .flink {
            display: inline-block;
            padding: 8px 15px;
            margin: 5px 8px;
            background-color: #3a3a3a;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
        }
        .stat-label {
            font-size: 1.1rem;
            color: var(--medium-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .emergency-banner {
            background-color: #dc3545;
            color: white;
            padding: 15px 0;
            font-weight: 600;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.9; }
            100% { opacity: 1; }
        }
        .breadcrumb-custom {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--medium-gray);
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--light-blue);
            color: var(--primary-blue);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 400px;
        }
        .timeline-item {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--primary-blue);
        }
        .timeline-item:after {
            content: '';
            position: absolute;
            left: 7px;
            top: 20px;
            width: 1px;
            height: calc(100% + 10px);
            background-color: #ddd;
        }
        .timeline-item:last-child:after {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
                margin-top: 66px;
            }
            .section-padding {
                padding: 60px 0;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
