
        :root {
            --primary-dark: #1A1A1A;
            --primary-light: #FFFFFF;
            --accent-color: #D4A373;
            --bg-light: #F5F5F5;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--primary-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            background-color: var(--primary-light) !important;
        }
        .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
        }
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            margin: 0 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        .cta-btn {
            background-color: var(--accent-color);
            color: var(--primary-light);
            padding: 0.5rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .cta-btn:hover {
            background-color: #b8915f;
            transform: translateY(-2px);
            color: var(--primary-light);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.6)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
            color: var(--primary-light);
            padding: 150px 0;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
        }
        .hero-section p {
            font-size: 1.25rem;
            max-width: 600px;
            margin: 1.5rem auto;
        }
        .btn-hero {
            background-color: var(--accent-color);
            color: var(--primary-light);
            padding: 0.75rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .btn-hero:hover {
            background-color: #b8915f;
            transform: translateY(-3px);
            color: var(--primary-light);
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--accent-color);
        }
        .text-center .section-title::after {
            left: 50%;
        }

        /* About Us */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Counter */
        .counter-section {
            background-color: var(--primary-dark);
            color: var(--primary-light);
        }
        .counter-box {
            text-align: center;
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .feature-box h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* Services Cards */
        .service-card {
            background-color: var(--bg-light);
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            height: 100%;
        }
        .service-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .service-card-body {
            padding: 1.5rem;
        }
        .service-card-body h5 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .service-card-body p {
            font-size: 0.95rem;
            line-height: 1.6;
            min-height: 120px; /* For uniform height */
        }
        .btn-read-more {
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
        }
        .btn-read-more:hover {
            text-decoration: underline;
        }

        /* Reviews */
        .review-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        .review-card h6 {
            font-weight: 700;
            margin-bottom: 0;
        }
        .review-card small {
            color: #6c757d;
        }

        /* FAQ */
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: var(--primary-light);
        }
        .accordion-button:focus {
            box-shadow: none;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--primary-dark);
            color: var(--primary-light);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2.5rem;
        }
        .cta-section .btn-hero {
            margin-top: 1.5rem;
        }

        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 1rem;
            width: 30px;
        }
        .contact-form .form-control, .contact-form .form-select {
            background-color: var(--bg-light);
            border: none;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        .contact-form .form-control:focus, .contact-form .form-select:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }

        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: #aaa;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: var(--primary-light);
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
        }
        footer ul {
            list-style: none;
            padding-left: 0;
        }
        footer ul li {
            margin-bottom: 0.75rem;
        }
        footer ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: var(--accent-color);
        }
        .newsletter-form {
            display: flex;
        }
        .newsletter-form input {
            background-color: #333;
            border: 1px solid #444;
            color: var(--primary-light);
            padding: 10px;
            border-radius: 0;
        }
        .newsletter-form button {
            background-color: var(--accent-color);
            border: none;
            color: var(--primary-light);
            padding: 0 15px;
        }
        .copyright {
            border-top: 1px solid #333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
        }
