:root {
            --primary-color: #0056b3;
            --secondary-color: #28a745;
            --accent-color: #dc3545;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        .hero-bg {
            background: linear-gradient(rgba(0, 84, 179, 0.85), rgba(0, 84, 179, 0.9)), url('https://images.unsplash.com/photo-1516549655669-df6654e435de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
        }
        .section-padding {
            padding: 5rem 1rem;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background: #f1f1f1;
            border-radius: 4px;
            color: #0056b3;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: #0056b3;
            color: white;
            transform: translateY(-3px);
        }
        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: #004494;
            transform: scale(1.05);
        }
        .card-hover {
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .testimonial-slider {
            overflow: hidden;
            white-space: nowrap;
            animation: scroll 20s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        footer a {
            color: #ddd;
            transition: color 0.3s;
        }
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 1rem;
            }
            .hero-bg h1 {
                font-size: 2rem;
            }
        }
