
        :root {
            --mustard: #6ff006;
            --charcoal: #333333;
            --white: #ffffff;
            --light-gray: #f8f9fa;
        }

        body { font-family: 'Montserrat', sans-serif; color: var(--charcoal); line-height: 1.6; }
        h1, h2, h3, .navbar-brand { font-family: 'Playfair Display', serif; font-weight: 700; }

        /* Navbar */
        .navbar { padding: 1.5rem 0; background: transparent !important; }
        .nav-link { color: var(--charcoal) !important; font-weight: 600; margin: 0 10px; transition: 0.3s; }
        .nav-link:hover { color: var(--mustard) !important; }
        .btn-mustard { background-color: var(--mustard); color: var(--charcoal) !important; font-weight: 700; border: none; padding: 10px 25px; border-radius: 5px; }
        .btn-mustard:hover { background-color: var(--charcoal); color: var(--mustard) !important; transform: translateY(-2px); }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://i.pinimg.com/736x/ee/fd/28/eefd288d95a50a262bd160e5666dee0e.jpg') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }

        /* General Section */
        section { padding: 90px 0; }
        .bg-light-custom { background-color: var(--light-gray); }
        .section-title { margin-bottom: 60px; text-align: center; }
        .section-title h2 { color: var(--charcoal); font-size: 2.8rem; position: relative; padding-bottom: 20px; }
        .section-title h2::after { content: ''; position: absolute; width: 80px; height: 4px; background: var(--mustard); bottom: 0; left: 50%; transform: translateX(-50%); }

        /* About Us - 15 Line Constraint */
        .about-text { text-align: justify; line-height: 1.8; }

        /* Counter */
        .counter-section { background: var(--charcoal); color: var(--mustard); padding: 50px 0; }

        /* Service Cards */
        .service-card { border: none; transition: 0.4s; height: 100%; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .service-img { height: 250px; object-fit: cover; }
        .service-desc { 
            height: 155px; /* Forced height for approx 7 lines */
            overflow: hidden; 
            font-size: 0.95rem;
            color: #555;
            background-color: var(--light-gray);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 5px;
        }

        /* Review */
        .review-box { background: var(--white); padding: 30px; border-radius: 10px; border-top: 5px solid var(--mustard); height: 100%; }

        /* FAQ */
        .accordion-button:not(.collapsed) { background-color: var(--mustard); color: var(--charcoal); }

        /* Footer */
        footer { background: #1a1a1a; color: #b0b0b0; padding: 80px 0 20px; }
        footer a { color: #b0b0b0; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--mustard); }
        .footer-logo { color: var(--white); font-size: 1.8rem; margin-bottom: 20px; display: block; }
