
        :root {
            --primary-color: #800020;
            --secondary-color: #FFF5E1;
            --accent-color: #F8BBD0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color) !important;
            margin: 0 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 0.5rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(128, 0, 32, 0.7), rgba(128, 0, 32, 0.7)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 6rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem 0;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
        }
        
        /* Vision & Mission */
        .vision-mission-box {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 2rem 1rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-card img {
            height: 300px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card .card-body {
            padding: 1.5rem;
        }
        
        .service-card h5 {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Booking Form */
        .booking-section {
            background-color: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .booking-form {
            padding: 3rem;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        footer h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-weight: bold;
        }
        
        footer a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: var(--accent-color);
        }
        
        footer ul {
            list-style: none;
            padding-left: 0;
        }
        
        footer ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 2rem;
            padding-top: 1.5rem;
            text-align: center;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            border-radius: 30px 0 0 30px;
            border: none;
            padding: 0.5rem 1rem;
        }
        
        .newsletter-form button {
            border-radius: 0 30px 30px 0;
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            padding: 0.5rem 1.5rem;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
