
        :root {
            --primary-dark: #293241;
            --primary-blue: #3d5a80;
            --primary-white: #ffffff;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-dark);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .navbar-brand i {
            color: var(--primary-blue);
            font-size: 2rem;
        }
        
        .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(--primary-blue) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-blue);
            color: var(--primary-white);
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
        }
        
        .btn-cta:hover {
            background-color: var(--primary-dark);
            color: var(--primary-white);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(196, 245, 124, 0.9), rgba(61, 90, 128, 0.8)),
                        url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: var(--primary-white);
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 5.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            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(--primary-blue);
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-blue);
            color: var(--primary-white);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--primary-white);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background-color: var(--light-gray);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        /* Services Cards */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .service-card-text {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px;
        }
        
        .process-box::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--primary-blue);
            z-index: -1;
        }
        
        .process-box:last-child::after {
            display: none;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-blue);
            color: var(--primary-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        /* Reviews */
        .review-card {
            background-color: var(--primary-white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 15px;
        }
        
        .review-location {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-blue);
            color: var(--primary-white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
            color: var(--primary-white);
            padding: 80px 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            background-color: var(--primary-blue);
            color: var(--primary-white);
            transform: translateX(5px);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        .contact-info-box:hover i {
            color: var(--primary-white);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: var(--primary-white);
            padding: 60px 0 30px;
        }
        
        .footer-links a {
            color: var(--primary-white);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: var(--primary-blue);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright a {
            color: var(--primary-white);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            color: var(--primary-blue);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-box::after {
                display: none;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
