
        /* --- CSS Variables for Theme --- */
        :root {
            --lux-green-dark: #143d28; /* Deep Forest Green */
            --lux-green-light: #2c5c45; /* Lighter Leaf Green */
            --lux-cream: #f4f7f5;      /* Off-white/Cream background */
            --lux-gold: #c5a059;       /* Muted Gold for luxury accents */
            --lux-text-dark: #2c3e50;
            --lux-text-light: #ecf0f1;
            --shadow-soft: 0 10px 30px rgba(20, 61, 40, 0.15);
        }

      

        /* UNIQUE CLASS: Main Container */
        .uni-main-container {
            max-width: 1000px;
            width: 100%;
            background: #fff;
            border-radius: 4px; /* Slightly sharp for sophisticated look */
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            overflow: hidden;
            position: relative;
        }

        /* Decorative Gold Border Line */
        .uni-main-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--lux-gold);
            z-index: 10;
        }
        .uni-main-wrapper{
            margin-left: 20%;
        }

        /* UNIQUE CLASS: Left Side (Luxury Info) */
        .uni-left-panel {
            background: var(--lux-green-dark);
            color: var(--lux-text-light);
            padding: 80px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Nature Decor (Leaf Pattern) */
        .uni-left-panel::after {
            content: '\f06c'; /* Leaf Icon */
            /*font-family: 'Font Awesome 6 Free';*/
            font-weight: 400;
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 15rem;
            color: rgba(255, 255, 255, 0.03);
            transform: rotate(-30deg);
        }

        /* Gold Accent Text */
        .uni-hotel-name {
            /*font-family: 'Lato', sans-serif;*/
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--lux-gold);
            margin-bottom: 25px;
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .uni-hotel-name::after {
            content: '';
            display: block;
            width: 40px;
            height: 1px;
            background: var(--lux-gold);
        }

        /* Main Heading (Serif Luxury Font) */
        .uni-heading-title {
            /*font-family: 'Playfair Display', serif;*/
            font-size: 2.8rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #fff;
        }

        .uni-sub-desc {
            /*font-family: 'Lato', sans-serif;*/
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 40px;
            border-left: 2px solid var(--lux-gold);
            padding-left: 20px;
        }

        /* Contact Button Style */
        .uni-contact-btn {
            display: inline-block;
            text-decoration: none;
            color: var(--lux-gold);
            border: 1px solid var(--lux-gold);
            padding: 12px 30px;
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            width: max-content;
        }

        .uni-contact-btn:hover {
            background: var(--lux-gold);
            color: var(--lux-green-dark);
        }

        /* UNIQUE CLASS: Right Side (Questions) */
        .uni-right-panel {
            padding: 60px 50px;
            background: var(--lux-cream);
        }

        /* UNIQUE CLASS: Accordion Wrapper */
        .uni-faq-item {
            border-bottom: 1px solid rgba(20, 61, 40, 0.1);
            margin-bottom: 5px;
            position: relative;
        }

        /* Hide Checkbox */
        .uni-faq-item input[type="checkbox"] {
            display: none;
        }

        /* Question Label Style */
        .uni-question-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 10px;
            /*font-family: 'Playfair Display', serif;*/
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--lux-green-dark);
            cursor: pointer;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .uni-question-label:hover {
            color: var(--lux-gold);
            padding-left: 15px; /* Subtle movement */
        }

        /* Icon Container */
        .uni-icon-wrapper {
            font-size: 0.8rem;
            color: var(--lux-gold);
            border: 1px solid var(--lux-gold);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            flex-shrink: 0;
        }

        /* Answer Body Style */
        .uni-answer-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
            opacity: 0;
            color: #566573;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .uni-answer-content p {
            padding-bottom: 30px;
            padding-left: 10px;
            border-left: 2px solid var(--lux-gold); /* Gold accent line for answer */
            margin-left: 10px;
        }
         .footers {
    padding: 90px 0 0;
    margin-left: 20%;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #1b1b1b;
    }

        /* --- CSS Logic for Open/Close --- */

        /* When Checked */
        .uni-faq-item input[type="checkbox"]:checked ~ .uni-question-label {
            color: var(--lux-gold);
            padding-left: 15px;
        }

        /* Rotate Icon Smoothly & Fill Background */
        .uni-faq-item input[type="checkbox"]:checked ~ .uni-question-label .uni-icon-wrapper {
            transform: rotate(180deg);
            background: var(--lux-gold);
            color: #fff;
            border-color: var(--lux-gold);
        }

        /* Expand Content Smoothly */
        .uni-faq-item input[type="checkbox"]:checked ~ .uni-answer-content {
            max-height: 500px; /* Generous height for long text */
            opacity: 1;
        }
 @media (max-width: 1200px) {
           
             .uni-main-wrapper{
            margin-left: 27%;
        }
        .footers {
    padding: 90px 0 0;
    margin-left: 20%;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #1b1b1b;
    }
}
        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 0;
                align-items: flex-start;
            }
             .uni-main-wrapper{
            margin-left: 0%;
        }
        .footers {
    padding: 90px 0 0;
    margin-left: 20%;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #1b1b1b;
}
            .uni-main-container {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
                box-shadow: none;
                border-radius: 0;
            }

            .uni-left-panel {
                padding: 60px 30px;
                text-align: center;
                align-items: center;
            }

            .uni-hotel-name::after {
                display: none; /* Hide line on mobile center */
            }
            
            .uni-sub-desc {
                border-left: none;
                padding-left: 0;
            }

            .uni-right-panel {
                padding: 40px 25px;
                background: #fff;
            }

            .uni-heading-title {
                font-size: 2.2rem;
            }
        }

 /* MAIN SECTION STYLING */
        .offer-section {
            width: 100%;
            background-color: #ffffff; /* White Background */
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            
            /* Center the content wrapper */
            display: flex;
            justify-content: center;
        }

        /* Text Container */
        .offer-text-container {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            height: 35px; /* Fixed height */
            line-height: 35px;
            position: relative;
            
            /* Layout settings */
            width: 100%;
            max-width: 800px; /* Max width so text doesn't spread too much */
            text-align: center; /* Ensure text is centered inside */
        }

        /* Individual Text Items */
        .offer-item {
            position: absolute;
            
            /* IMPORTANT: This formula forces exact center */
            left: 50%;
            transform: translate(-50%, 20px); 
            
            opacity: 0;
            transition: all 0.5s ease-in-out;
            white-space: nowrap;
            
            /* Ensure it fits nicely */
            width: auto; 
        }

        /* Active State */
        .offer-item.active {
            opacity: 1;
            /* Move up to the exact center line */
            transform: translate(-50%, 0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 600px) {
            .offer-text-container {
                font-size: 0.9rem; /* Smaller font for mobile */
                height: 30px;
                line-height: 30px;
                padding: 0 20px; /* Padding to ensure text doesn't hit screen edges */
            }
            /* Allow text wrap on very small screens if needed */
            .offer-item {
                white-space: normal; 
                width: 90%; 
                text-align: center;
                /* Recalculating center for wrapped text */
                left: 50%; 
                transform: translate(-50%, 20px);
            }
            .offer-item.active {
                transform: translate(-50%, 0);
            }
            .offer-section{
                padding: 5px 0 35px;
            }
        }