:root {
            --primary-blue: #1e3a8a;
            --secondary-gold: #d4af37;
            --accent-teal: #0d9488;
            --light-bg: #f8fafc;
            --dark-text: #1e293b;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, .display-1, .display-2, .display-3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
        }
        .navbar-brand span {
            color: var(--secondary-gold);
        }
        .hero-section {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(13, 148, 136, 0.85) 100%), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-gold);
        }
        .text-center .section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card, .value-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .service-card:hover, .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
        }
        .service-icon, .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--secondary-gold);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 8px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-gold);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background-color: var(--light-bg);
            border-radius: 8px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .flink:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 500;
            border-radius: 8px;
        }
        .btn-primary:hover {
            background-color: #1e40af;
            border-color: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 12px;
        }
        .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;
            }
            .display-3 {
                font-size: 2.5rem;
            }
            .timeline {
                padding-left: 20px;
            }
            .timeline-item::before {
                left: -26px;
            }
        }
