:root {
            --primary-blue: #0d3b66;
            --secondary-teal: #1a936f;
            --accent-gold: #f4a261;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5f7c 100%);
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        .hero-section .lead {
            font-size: 1.3rem;
            opacity: 0.9;
        }
        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-teal);
            margin-bottom: 1.5rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .testimonial-card {
            background: var(--light-bg);
            border-left: 5px solid var(--accent-gold);
        }
        footer {
            background: #1c2b39;
            color: #b0b7c3;
        }
        footer a {
            color: #b0b7c3;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
        }
        .flink {
            background: rgba(255,255,255,0.05);
            padding: 12px 25px;
            border-radius: 8px;
            display: inline-block;
            margin: 5px 8px;
            color: #b0b7c3;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
        }
        .btn-primary:hover {
            background-color: #0a2e4d;
            border-color: #0a2e4d;
        }
        .contact-info-box {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--secondary-teal);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 80px 0 60px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
