        :root {
            --primary-dark: #001d3d;
            --primary-medium: #003566;
            --accent-yellow: #ffd60a;
            --accent-gold: #ffc300;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-dark);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-yellow) !important;
        }
        
        .btn-cta {
            background-color: var(--accent-yellow);
            color: var(--primary-dark);
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
            padding: 100px 0;
        }
        
        .hero-title {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        /* Alternate Background */
        .bg-alt {
            background-color: #f8f9fa;
        }
        
        /* Counter Styles */
        .counter-box {
            text-align: center;
            padding: 30px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-yellow);
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: var(--primary-medium);
            font-weight: 500;
        }
        
        /* Service Cards */
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-title {
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .feature-item {
            display: flex;
            align-items: start;
            margin-bottom: 25px;
        }
        
        .feature-icon {
            background-color: var(--accent-yellow);
            color: var(--primary-dark);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        /* FAQ Styles */
        .accordion-button {
            background-color: var(--primary-dark);
            color: white;
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-medium);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Client Reviews */
        .review-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .stars {
            color: var(--accent-gold);
            margin-bottom: 15px;
        }
        
        /* Contact Form */
        .contact-form .form-control {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 12px 20px;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--accent-yellow);
            box-shadow: 0 0 0 0.2rem rgba(255, 214, 10, 0.25);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--accent-yellow);
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--accent-yellow);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
            }
        }
