
        :root {
            --primary-mint: #98FF98;
            --secondary-mint: #7FDD7F;
            --accent-pink: #FFB6C1;
            --light-pink: #FFC0CB;
            --light-gray: #F5F5F5;
            --text-gray: #555555;
            --dark-gray: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background: transparent !important;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-mint) !important;
        }

        .navbar-brand i {
            font-size: 2rem;
            color: var(--accent-pink);
            margin-right: 10px;
        }

        .navbar-nav .nav-link {
            color: var(--secondary-mint) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary-mint) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-pink);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: var(--accent-pink);
            color: var(--dark-gray);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-pink);
        }

        .btn-cta:hover {
            background: transparent;
            color: var(--accent-pink);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 182, 193, 0.3);
        }

        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: var(--primary-mint);
            opacity: 0.1;
            transform: rotate(35deg);
        }

        .hero-content h1 {
            font-size:5rem;
            font-weight: 800;
            color: var(--secondary-mint);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-mint);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-pink);
        }

        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .about-content p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Counter Section */
        .counter-section {
            background: var(--secondary-mint);
            color: var(--dark-gray);
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
        }

        .counter-item i {
            font-size: 3rem;
            color: var(--accent-pink);
            margin-bottom: 15px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-gray);
        }

        .counter-label {
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Vision Mission */
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-5px);
        }

        .vm-card i {
            font-size: 3rem;
            color: var(--secondary-mint);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(127, 221, 127, 0.2);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--secondary-mint);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 30px;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--accent-pink);
            opacity: 0.3;
        }

        .process-step:last-child::after {
            display: none;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--secondary-mint);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--dark-gray);
        }

        /* Services */
        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .service-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
        }

        .service-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-mint);
        }

        .service-card p {
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Reviews */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-stars {
            color: var(--accent-pink);
            margin-bottom: 15px;
        }

        .review-text {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            font-weight: 600;
            color: var(--secondary-mint);
        }

        .review-location {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* FAQ */
        .accordion-button {
            background: white;
            color: var(--secondary-mint);
            font-weight: 600;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--light-gray);
            color: var(--secondary-mint);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-pink);
        }

        .accordion-item {
            border: 1px solid var(--light-gray);
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: var(--secondary-mint);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: var(--dark-gray);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            color: var(--dark-gray);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-cta-white {
            background: white;
            color: var(--secondary-mint);
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .btn-cta-white:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
        }

        /* Contact Section */
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--secondary-mint);
            margin-right: 15px;
            width: 40px;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-widget h4 {
            color: var(--accent-pink);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--primary-mint);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--primary-mint);
            background: transparent;
            color: white;
            border-radius: 5px;
        }

        .newsletter-form input::placeholder {
            color: #999;
        }

        .newsletter-form button {
            background: var(--accent-pink);
            color: var(--dark-gray);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--light-pink);
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #555;
            color: #999;
        }

        .copyright a {
            color: var(--primary-mint);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .process-step::after {
                display: none;
            }
        }
