:root {
            --primary-blue: #0d3b66;
            --secondary-teal: #2a9d8f;
            --accent-gold: #e9c46a;
            --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) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 59, 102, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            color: var(--primary-blue);
            border-left: 5px solid var(--accent-gold);
            padding-left: 1rem;
            margin-bottom: 2.5rem;
        }
        .service-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(13, 59, 102, 0.15) !important;
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary-teal);
            margin-bottom: 1rem;
        }
        .stats-section {
            background-color: var(--primary-blue);
            color: white;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
        }
        .flink {
            background: var(--light-bg);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            color: var(--primary-blue);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
            font-weight: 500;
        }
        .flink:hover {
            background: white;
            color: var(--secondary-teal);
            border-color: var(--secondary-teal);
            transform: scale(1.03);
        }
        footer {
            background-color: #1a2b3c;
            color: #cbd5e1;
        }
        .footer-link {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: var(--accent-gold);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(13, 59, 102, 0.05);
            color: var(--primary-blue);
            font-weight: 600;
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 10px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 5rem 0; }
            .stat-number { font-size: 2.5rem; }
        }
