
        :root {
            --primary-color: #FF9F1C;
            --secondary-color: #FFBF69;
            --accent-color: #2EC4B6;
            --light-accent: #CBF3F0;
            --white-color: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans Sunuwar', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            padding: 1rem 0;
            background: transparent !important;
            position: relative;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .cta-btn {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            background: var(--secondary-color);
            color: #333;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-accent) 0%, var(--white-color) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size:4rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .about-content p {
            color: #555;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .read-more-btn {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .read-more-btn:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .read-more-btn i {
            margin-left: 5px;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 60px 0;
            color: var(--white-color);
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--white-color);
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 50px;
        }
        
        .vision-box, .mission-box {
            background: var(--white-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s;
        }
        
        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-box i, .mission-box i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .vision-box h3, .mission-box h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
            background: var(--light-accent);
            border-radius: 15px;
            margin-bottom: 30px;
            transition: all 0.3s;
        }
        
        .feature-box:hover {
            background: var(--accent-color);
            color: var(--white-color);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-box:hover i {
            color: var(--white-color);
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .feature-box:hover h4 {
            color: var(--white-color);
        }
        
        /* Booking Section */
        .booking-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light-accent) 0%, var(--white-color) 100%);
        }
        
        .booking-form {
            background: var(--white-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .booking-form h3 {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-control, .form-select {
            border: 2px solid var(--light-accent);
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 20px;
            font-family: 'Noto Sans Sunuwar', sans-serif;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(46, 196, 182, 0.25);
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .service-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h4 {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-content p {
            color: #555;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--light-accent);
        }
        
        .review-card {
            background: var(--white-color);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-name {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .review-rating {
            color: var(--primary-color);
        }
        
        .review-rating i {
            margin-right: 2px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .accordion-button {
            background: var(--light-accent);
            color: var(--primary-color);
            font-weight: 600;
            padding: 20px;
            border: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--accent-color);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            padding: 20px;
            background: var(--white-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 80px 0;
            text-align: center;
            color: var(--white-color);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .cta-btn-white {
            background: var(--white-color);
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .cta-btn-white:hover {
            background: var(--accent-color);
            color: var(--white-color);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
        }
        
        .contact-info {
            background: var(--white-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .contact-info i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
        }
        
        .contact-info h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-info p {
            color: #555;
            margin-bottom: 0;
        }
        
        .contact-form {
            background: var(--white-color);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-form h3 {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background: #333;
            color: var(--white-color);
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-widget p {
            color: #ccc;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-family: 'Noto Sans Sunuwar', sans-serif;
        }
        
        .newsletter-form button {
            background: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .newsletter-form button:hover {
            background: var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #ccc;
        }
        
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                background: var(--white-color);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
        }
