
        :root {
            --primary-color: #5D8AA8;
            --light-color: #F0F8FF;
            --accent-color: #B9D9EB;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 15px 0;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 10px;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: #4a7a9a;
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 4px;
        }
        
        .btn-primary-custom:hover {
            background-color: #4a7a9a;
            border-color: #4a7a9a;
        }
        
        /* Section Styles */
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .section-description {
            margin-bottom: 50px;
            color: #666;
        }
        
        /* About Section */
        .about-img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission Section */
        .vision-mission-box {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        /* Why Choose Us */
        .why-choose-box {
            text-align: center;
            padding: 25px;
            border-radius: 8px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .why-choose-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .why-choose-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .why-choose-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .service-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-card-body p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-card-body .btn {
            align-self: flex-start;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-section .btn {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 4px;
            border: none;
        }
        
        .cta-section .btn:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        /* FAQ Section */
        .accordion-button {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }
        
        /* Client Reviews */
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-card .client-info {
            display: flex;
            align-items: center;
        }
        
        .review-card .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-card .client-info h5 {
            margin: 0;
            font-weight: 600;
        }
        
        .review-card .client-info p {
            margin: 0;
            font-style: normal;
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-info-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .contact-info-item {
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 30px;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        
        .newsletter-section h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .newsletter-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form .form-control {
            padding: 12px 20px;
            border-radius: 4px 0 0 4px;
            border: none;
        }
        
        .newsletter-form .btn {
            background-color: rgb(236, 222, 16);
            color: var(--primary-color);
            font-weight: 600;
            padding: 0 25px;
            border-radius: 0 4px 4px 0;
            border: none;
        }
        
        .newsletter-form .btn:hover {
            background-color: rgb(216, 202, 12);
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 70px 0 20px;
        }
        
        footer h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        footer p {
            margin-bottom: 20px;
            color: #ddd;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            margin-bottom: 12px;
        }
        
        footer ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .footer-newsletter .form-control {
            background-color: #444;
            border: 1px solid #555;
            color: white;
            padding: 12px 15px;
            border-radius: 4px;
        }
        
        .footer-newsletter .form-control:focus {
            background-color: #444;
            border-color: var(--primary-color);
            color: white;
            box-shadow: none;
        }
        
        .footer-newsletter .btn {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 4px;
            border: none;
            margin-top: 10px;
            width: 100%;
        }
        
        .footer-newsletter .btn:hover {
            background-color: #4a7a9a;
        }
        
        .copyright {
            border-top: 1px solid #444;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .newsletter-section h3 {
                font-size: 1.5rem;
            }
        }
