:root {
            --primary-blue: #0a3d62;
            --accent-gold: #e6b325;
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--accent-gold);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .bg-light-custom {
            background-color: var(--light-gray);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        .service-card:hover .icon-box {
            background: var(--accent-gold);
            transform: translateY(-10px);
        }
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .contact-info-box {
            padding: 2rem;
            border-left: 5px solid var(--accent-gold);
            background: white;
            border-radius: 0 10px 10px 0;
        }
        .footer {
            background: var(--dark-gray);
            color: #ddd;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-gold);
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.5rem;
            background: #e9ecef;
            border-radius: 5px;
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .btn-primary-custom {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
        }
        .btn-primary-custom:hover {
            background-color: #082a47;
            border-color: #082a47;
            transform: translateY(-2px);
        }
        .btn-accent {
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
            color: #000;
            font-weight: 600;
        }
        .btn-accent:hover {
            background-color: #d19e1f;
            border-color: #d19e1f;
            color: #000;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
        }
