        /* UNIQUE CLASS: Main Container */
        .uni-main-container {
            max-width: 1100px;
            width: 100%;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            overflow: hidden;
        }

        /* UNIQUE CLASS: Left Side (Info) */
        .uni-left-panel {
            background: #2d3436;
            color: #fff;
            padding: 138px 40px 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;
        }

        /* Background Decoration */
       /* .uni-left-panel::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }
*/
        /* Hotel Name Style */
        .uni-hotel-name {
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #A2845C;
            margin-bottom: 20px;
            font-weight: 600;
        }

        /* Main Heading Style (FAQ Full Form) */
        .uni-heading-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .uni-sub-desc {
            font-size: 1rem;
            color: #b2bec3;
            line-height: 1.6;
            max-width: 300px;
        }

        /* UNIQUE CLASS: Right Side (Questions) */
        .uni-right-panel {
            padding: 60px 50px;
            background: #fff;
            overflow-x: hidden; /* Prevent horizontal scrollbar */
        }

        /* UNIQUE CLASS: Accordion Wrapper */
        .uni-faq-item {
            border-bottom: 1px solid #eee;
            margin-bottom: 10px;
        }

        /* 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: 20px 0;
            font-size: 1.1rem;
            font-weight: 500;
            color: #2d3436;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .uni-question-label:hover {
            color: #A2845C;
        }

        /* Icon Container */
        .uni-icon-wrapper {
            font-size: 0.9rem;
            color: #b2bec3;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            flex-shrink: 0; /* Prevent icon from shrinking */
        }

        /* Answer Body Style */
        .uni-answer-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            opacity: 0;
            color: #636e72;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .uni-answer-content p {
            padding-bottom: 25px;
            word-wrap: break-word; /* Prevent long words from causing overflow */
        }

        /* --- CSS Logic for Open/Close --- */

        /* When Checked */
        .uni-faq-item input[type="checkbox"]:checked ~ .uni-question-label {
            color: #A2845C;
        }

        /* Rotate Icon Smoothly */
        .uni-faq-item input[type="checkbox"]:checked ~ .uni-question-label .uni-icon-wrapper {
            transform: rotate(180deg);
            color: #A2845C;
        }

        /* Expand Content Smoothly */
        .uni-faq-item input[type="checkbox"]:checked ~ .uni-answer-content {
            max-height: 300px;
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .uni-main-container {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
            }

            .uni-left-panel {
                padding: 88px 25px 28px 25px;
                text-align: center;
                align-items: center;
            }
            
            .uni-sub-desc {
                margin: 0 auto;
            }

            .uni-right-panel {
                padding: 30px 20px;
            }

            .uni-heading-title {
                font-size: 2rem;
            }
            .uni-left-panel::before{
               
           content: none;
            position: absolute;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }
        }

           .kitchen-section {
            display: flex;
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .kitchen-image {
            flex: 1;
            padding-right: 20px;
        }
        .kitchen-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .kitchen-text {
            flex: 1;
            padding-left: 20px;
            padding-bottom: 8px;
            padding-top: 28px;
        }
        .kitchen-text h2 {
            color:#9D7E54;
            font-size: 28px;
            margin-bottom: 10px;
        }
        .kitchen-text p {
            color: #333;
            font-size: 15px;
            text-align: justify;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .tip-box {
            background:#ebebeb;
            border-left: 5px solid #9D7E54;
            padding: 15px;
            font-style: italic;
            color: #555;
            border-radius: 5px;
        }
        @media (max-width: 768px) {
            .kitchen-section {
                flex-direction: column;
            }
            .kitchen-image, .kitchen-text {
                padding: 0;
            }
            .kitchen-text h2 {
                margin-top: 18px;
                font-size: 2em;
            }
        }