:root {
            --primary: #0a2c5e;
            --secondary: #00a8cc;
            --accent: #e8f4fc;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navbar */
        .navbar {
            background-color: var(--primary);
            padding: 1.2rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        
        .navbar-brand span {
            color: var(--secondary);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            color: var(--secondary) !important;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1a4a8f 100%);
            color: white;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,59.4,779.4,97.9,500,97z" fill="%23f8f9fa"/></svg>');
            background-size: 100% 50px;
            background-position: bottom;
            background-repeat: no-repeat;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #0097b7;
            border-color: #0097b7;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 168, 204, 0.2);
        }
        
        /* Section Styling */
        .section-title {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        section {
            padding: 80px 0;
        }
        
        /* Services Section */
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 2.5rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--secondary);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        
        /* Benefits Section */
        .benefits-section {
            background-color: var(--accent);
        }
        
        .benefit-item {
            margin-bottom: 2rem;
        }
        
        .benefit-icon {
            color: var(--secondary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a4a8f 100%);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta-section .section-title::after {
            background-color: var(--secondary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .btn-light:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
        }
        
        /* Footer */
        #footer-info {
            background-color: #0c1d3a;
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px;
        }
        
        #footer-info h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        #footer-info a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        #footer-info a:hover {
            color: var(--secondary);
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .service-card {
                margin-bottom: 30px;
            }
        }