
        :root {
            --primary-teal: #008080;
            --light-gray: #F4F4F4;
            --white: #FFFFFF;
            --dark-text: #333333;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            text-align: center;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-text);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-teal);
        }
        
        .cta-btn {
            background-color: var(--primary-teal);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .cta-btn:hover {
            background-color: #006666;
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background-color: #adf3f3;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary-teal);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-teal);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            color: #666;
        }
        
        /* Alternating Section Background */
        .bg-light-gray {
            background-color: var(--light-gray);
        }
        
        /* About Us Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            color: var(--primary-teal);
            margin-bottom: 20px;
        }
        
        /* Counter Section */
        .counter-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .counter-box:hover {
            transform: translateY(-10px);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-teal);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-teal);
        }
        
        /* Why Choose Us */
        .why-choose-item {
            padding: 25px 20px;
            border-radius: 10px;
            background-color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .why-choose-item i {
            font-size: 2rem;
            color: var(--primary-teal);
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            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 h5 {
            font-weight: 700;
            color: var(--primary-teal);
            margin-bottom: 15px;
        }
        
        .service-card p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-card .btn {
            background-color: var(--primary-teal);
            color: var(--white);
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .service-card .btn:hover {
            background-color: #006666;
            color: var(--white);
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-teal);
            color: var(--white);
            padding: 80px 0;
            border-radius: 10px;
            margin: 40px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section .btn {
            background-color: var(--white);
            color: var(--primary-teal);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .cta-section .btn:hover {
            background-color: #f0f0f0;
            color: var(--primary-teal);
            transform: translateY(-3px);
        }
        
        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background-color: var(--white);
            color: var(--dark-text);
            font-weight: 600;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-teal);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            filter: brightness(0) invert(1);
        }
        
        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }
        
        /* Client Reviews */
        .review-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .review-card .rating {
            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 h6 {
            margin: 0;
            font-weight: 600;
        }
        
        .review-card .client-info small {
            color: #666;
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            border-radius: 25px;
            border: none;
            padding: 12px 20px;
            margin-bottom: 15px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-teal);
            color: var(--white);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #006666;
            color: var(--white);
        }
        
        /* Contact Section */
        .contact-item {
            margin-bottom: 30px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-teal);
            margin-right: 15px;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        footer h5 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-teal);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer ul li a:hover {
            color: var(--primary-teal);
        }
        
        .footer-cta {
            background-color: var(--primary-teal);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        
        .footer-cta a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
            text-align: center;
            color: #bbb;
        }
        
        .copyright a {
            color: #bbb;
            text-decoration: none;
        }
        
        .copyright a:hover {
            color: var(--primary-teal);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
