
        :root {
            --primary-color: #1E5F8A;
            --secondary-color: #F4F4F4;
            --background-color: #FFFFFF;
            --text-color: #2B2B2B;
            --accent-color: #F4A261;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            background-color: var(--background-color);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar .btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .navbar .btn:hover {
            background-color: #164a6e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Section Spacing */
        section {
            padding: 4rem 0;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(30,95,138,0.1) 0%, rgba(244,162,97,0.1) 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary-custom:hover {
            background-color: #164a6e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30,95,138,0.3);
            color: white;
        }
        
        /* Alternate Section Background */
        .bg-light-custom {
            background-color: var(--secondary-color);
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Why Choose Us */
        .choose-us-item {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }
        
        .choose-us-item:hover {
            transform: translateY(-5px);
        }
        
        .choose-us-item i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        /* Service Cards */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card .card-body {
            padding: 1.5rem;
        }
        
        .service-card h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #164a6e 100%);
            color: white;
            text-align: center;
            padding: 4rem 0;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--secondary-color);
            color: var(--text-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Reviews */
        .review-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            height: 100%;
        }
        
        .review-card .stars {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .review-card .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 1.5rem;
        }
        
        .reviewer-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }
        
        /* Contact Form */
        .contact-form .form-control {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 0.75rem;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(30,95,138,0.25);
        }
        
        /* Footer */
        footer {
            background-color: var(--text-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        footer h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--accent-color);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 2rem;
            padding-top: 1rem;
            text-align: center;
        }
        
        /* Newsletter Form */
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: 1px solid #444;
            background-color: #333;
            color: white;
            border-radius: 5px;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #e8934f;
        }
