
        :root {
            --teal: #009688;
            --soft-blue: #b7e8ff;
            --off-white: #FAFAFA;
            --warm-orange: #FFB74D;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        .bg-off-white {
            background-color: var(--off-white);
        }
        .bg-soft-blue {
            background-color: var(--soft-blue);
        }
        .text-teal {
            color: var(--teal);
        }
        .btn-teal {
            background-color: var(--teal);
            color: white;
            border: none;
        }
        .btn-teal:hover {
            background-color: #00897b;
            color: white;
        }
        .btn-warm-orange {
            background-color: var(--warm-orange);
            color: #333;
            border: none;
        }
        .btn-warm-orange:hover {
            background-color: #ffa726;
            color: #333;
        }
        /* Centered Navbar */
        .navbar-center {
            display: flex;
            justify-content: center;
        }
        .navbar-nav {
            flex-direction: row;
        }
        .nav-link {
            padding: 0.5rem 1rem !important;
            color: #333 !important;
        }
        .nav-link:hover {
            color: var(--teal) !important;
        }
        /* Hero Section */
        .hero-section {
            padding: 120px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://png.pngtree.com/thumb_back/fh260/background/20240611/pngtree-construction-tools-house-renovation-on-wooden-background-image_15747798.jpg') center/cover no-repeat;
            color: white;
        }
        /* Section Padding */
        section {
            padding: 80px 0;
        }
        /* Counter Section */
        .counter-card {
            transition: transform 0.3s ease;
        }
        .counter-card:hover {
            transform: translateY(-5px);
        }
        /* Why Choose Us Icons */
        .feature-icon {
            font-size: 2rem;
            color: var(--teal);
            margin-bottom: 1rem;
        }
        /* Service Cards */
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        /* Review Cards */
        .review-card {
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: scale(1.02);
        }
        .star-rating {
            color: var(--warm-orange);
        }
        /* FAQ Accordion */
        .accordion-button:not(.collapsed) {
            background-color: rgba(129, 212, 250, 0.1);
            color: var(--teal);
        }
        /* Footer */
        footer a {
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--warm-orange) !important;
        }
