
        :root {
            --primary-green: #046307;
            --primary-black: #000000;
            --light-gray: #EEEEEE;
            --text-gray: #555555;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--primary-black);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-green) !important;
            font-family: 'Playfair Display', serif;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-black) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-green) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-green);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background-color: #034a05;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(4, 99, 7, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://c1.wallpaperflare.com/preview/101/381/82/lichtraum-visualization-architecture-live.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-content h1 {
            font-size:6rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-green);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-box h5 {
            font-size: 1.2rem;
            font-weight: 500;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        /* Feature Box */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        /* Service Cards */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card .card-body {
            padding: 25px;
        }
        
        .service-card .card-title {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* Booking Section */
        .booking-section {
            background-color: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .booking-form {
            padding: 50px;
        }
        
        .booking-form h2 {
            color: var(--primary-green);
            margin-bottom: 30px;
        }
        
        /* Review Cards */
        .review-card {
            background-color: 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);
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--primary-black);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-green);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-green);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-green), #034a05);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary-green);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background-color: var(--light-gray);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
            background-color: var(--primary-green);
            color: white;
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-green);
            margin-right: 20px;
            min-width: 40px;
        }
        
        .contact-info-box:hover i {
            color: white;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-black);
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: #ffc107;
            margin-bottom: 20px;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--primary-green);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #034a05;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--primary-green);
        }
        
        .footer-bottom {
            border-top: 1px solid #333333;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #cccccc;
        }
        
        .footer-bottom a {
            color: #ffc107;
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .booking-form {
                padding: 30px 20px;
            }
        }
