:root {
            --primary-blue: #003366;
            --secondary-gold: #c5a572;
            --accent-red: #9d2235;
            --light-gray: #f8f9fa;
            --dark-gray: #333333;
            --text-color: #2c3e50;
            --transition-speed: 0.3s;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 400;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1.2rem;
        }
        h1 {
            font-size: 3.2rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-red);
        }
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all var(--transition-speed);
        }
        .btn-primary:hover, .btn-primary:focus {
            background-color: #002244;
            border-color: #002244;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .btn-secondary {
            background-color: var(--secondary-gold);
            border-color: var(--secondary-gold);
            color: #000;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all var(--transition-speed);
        }
        .btn-secondary:hover, .btn-secondary:focus {
            background-color: #b89452;
            border-color: #b89452;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 1rem 0;
            transition: all var(--transition-speed);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--accent-red);
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-gray) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 0.75rem !important;
            position: relative;
            transition: all var(--transition-speed);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0.75rem;
            width: 0;
            height: 2px;
            background-color: var(--accent-red);
            transition: width var(--transition-speed);
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: calc(100% - 1.5rem);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 34, 68, 0.9)), url('https://images.unsplash.com/photo-1516549655669-df565bc5d4e5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 76px;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .section-title {
            margin-bottom: 3rem;
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .card-body {
            padding: 1.75rem;
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(0, 51, 102, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            font-size: 1.8rem;
        }
        .stats-section {
            background-color: var(--primary-blue);
            color: white;
            padding: 4rem 0;
        }
        .stats-section h2, .stats-section h3 {
            color: white;
        }
        .stats-section h2:after {
            background-color: var(--secondary-gold);
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary-gold);
            margin-bottom: 0.5rem;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 5px solid var(--light-gray);
            transition: transform var(--transition-speed);
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        .contact-info {
            background-color: var(--light-gray);
            padding: 2rem;
            border-radius: 10px;
            height: 100%;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .emergency-banner {
            background-color: var(--accent-red);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 2rem;
        }
        .emergency-number {
            font-size: 2.2rem;
            font-weight: 800;
            display: block;
            margin: 0.5rem 0;
        }
        .footer {
            background-color: #001a33;
            color: #b0b7c3;
            padding: 4rem 0 2rem;
        }
        .footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .friendlink-section {
            background-color: var(--light-gray);
            padding: 3rem 0;
            border-top: 1px solid #eaeaea;
            border-bottom: 1px solid #eaeaea;
        }
        .flink {
            display: inline-block;
            background-color: white;
            color: var(--primary-blue);
            padding: 0.75rem 1.5rem;
            margin: 0.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #ddd;
            transition: all var(--transition-speed);
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-speed);
            z-index: 1000;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--accent-red);
            color: white;
            transform: translateY(-5px);
        }
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.25);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 6rem 0 4rem;
            }
            .hero-section h1 {
                font-size: 2.8rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .navbar-nav {
                padding-top: 1rem;
            }
            .nav-link {
                margin: 0.25rem 0;
            }
            .emergency-number {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
