:root {
            --primary-blue: #0a3d62;
            --secondary-teal: #12a4b8;
            --accent-gold: #f6b93b;
            --neutral-light: #f8f9fa;
            --neutral-dark: #343a40;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(18, 164, 184, 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: 10rem 0;
        }
        .section-title {
            color: var(--primary-blue);
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 10px;
            margin-bottom: 2.5rem;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--secondary-teal);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            color: var(--secondary-teal);
            margin-bottom: 1rem;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(10, 61, 98, 0.3);
        }
        .footer {
            background: var(--primary-blue);
            color: white;
            padding-top: 3rem;
        }
        .flink {
            color: #b3d4fc;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .flink:hover {
            color: white;
            background: rgba(255,255,255,0.1);
            text-decoration: none;
        }
        .friendlink {
            background: var(--neutral-light);
            padding: 3rem 0;
        }
        .company-info-card {
            border-left: 5px solid var(--accent-gold);
            background: #f8f9fa;
        }
        .contact-info i {
            color: var(--secondary-teal);
            width: 24px;
        }
        .img-fluid {
            border-radius: 8px;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }
        .stats-label {
            color: var(--secondary-teal);
            font-weight: 600;
        }
        .testimonial-card {
            border-top: 4px solid var(--secondary-teal);
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(10, 61, 98, 0.05);
            color: var(--primary-blue);
        }
        @media (max-width: 768px) {
            .hero-section { padding: 6rem 0; }
            .display-4 { font-size: 2.5rem; }
        }
