
        :root {
            --primary-dark: #2C2C2C;
            --primary-medium: #4B4B4B;
            --accent-color: #056bbe;
            --light-bg: #F7EDE2;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--primary-dark);
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
            box-shadow: none;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-dark) !important;
        }
        
        .navbar-brand i {
            color: var(--accent-color);
            margin-right: 8px;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .btn-cta-nav {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta-nav:hover {
            background-color: var(--primary-dark);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
            opacity: 0.1;
            border-radius: 50%;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--primary-medium);
            margin-bottom: 30px;
        }
        
        .btn-cta-hero {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-hero:hover {
            background-color: var(--primary-dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .about-images {
            position: relative;
            height: 400px;
        }
        
        .about-img {
            position: absolute;
            width: 280px;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .about-img:hover {
            transform: scale(1.05);
        }
        
        .about-img-1 {
            top: 0;
            left: 0;
            z-index: 3;
        }
        
        .about-img-2 {
            top: 50px;
            left: 100px;
            z-index: 2;
        }
        
        .about-img-3 {
            top: 100px;
            left: 200px;
            z-index: 1;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .btn-read-more {
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .btn-read-more:hover {
            color: var(--primary-dark);
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            padding: 60px 0;
            color: var(--white);
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .counter-value {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Vision & Mission */
        .vision-mission {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .vm-box {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-5px);
        }
        
        .vm-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background-color: var(--light-bg);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        /* Work Process */
        .work-process {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .process-step {
            text-align: center;
            padding: 30px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--accent-color);
            transform: translateY(-50%);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }
        
        .process-icon i {
            font-size: 2rem;
            color: var(--white);
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .service-card {
            background-color: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h4 {
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .service-card-body p {
            color: var(--primary-medium);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        /* Booking Form */
        .booking-form {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
        }
        
        .booking-form .section-title {
            color: var(--white);
        }
        
        .booking-form .section-title::after {
            background-color: var(--accent-color);
        }
        
        .form-control, .form-select {
            border: none;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 3px rgba(230, 177, 126, 0.3);
            border-color: var(--accent-color);
        }
        
        .btn-submit {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            padding: 12px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .review-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stars {
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .review-text {
            color: var(--primary-medium);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .reviewer-info h5 {
            font-weight: bold;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .reviewer-info p {
            color: var(--primary-medium);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .accordion-button {
            background-color: var(--light-bg);
            color: var(--primary-dark);
            font-weight: 600;
            border: none;
            padding: 15px 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .accordion-body {
            background-color: var(--light-bg);
            color: var(--primary-medium);
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            padding: 15px 50px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-cta-large:hover {
            background-color: var(--white);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background-color: var(--white);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .contact-info:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 15px;
            width: 40px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        footer h4 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
            display: inline-block;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: 1px;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--accent-color);
            color: var(--white);
            border: 1px;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--primary-medium);
        }
        
        .copyright {
            border-top: 1px solid var(--primary-medium);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-img {
                width: 200px;
                height: 250px;
            }
            
            .about-img-2 {
                left: 50px;
            }
            
            .about-img-3 {
                left: 100px;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
