 .content {
            padding: 50px;
            text-align: center;
        }

        h1 {
            color: #128C7E;
        }

        /* 
         * UNIQUE CLASS NAME: zulfiqar_sticky_whatsapp_widget_v1
         * Description: Styles for the sticky WhatsApp button
         */
        .zulfiqar_sticky_whatsapp_widget_v1 {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366; /* Official WhatsApp Green */
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        /* Hover Effect - Zoom thoda */
        .zulfiqar_sticky_whatsapp_widget_v1:hover {
            transform: scale(1.1);
            background-color: #20b857;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
        }

        /* Icon Styling */
        .zulfiqar_sticky_whatsapp_widget_v1 svg {
            width: 35px;
            height: 35px;
            fill: white;
            transition: all 0.3s ease;
        }

        /* Pulse Animation (Optional - thoda heartbeat effect) */
        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Adding pulse on load or continuous */
        .zulfiqar_sticky_whatsapp_widget_v1.pulse-effect {
            animation: pulse-green 2s infinite;
        }

         /* MAIN CONTAINER */
        .main-faq-container {
            max-width: 1100px;
            width: 100%;
            background: #fff;
            margin: 0 auto;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 40% 60%; /* Left Text, Right Questions */
            overflow: hidden;
            padding-bottom: 58px;
            min-height: 600px;
        }

        /* LEFT SIDE */
        .left-info-side {
            background: #2c3e50;
            color: #fff;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;
        }

        .left-info-side::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }

        .hotel-label {
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #AA8453;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .side-desc {
            font-size: 1rem;
            color: #bdc3c7;
            line-height: 1.6;
            max-width: 90%;
        }

        /* RIGHT SIDE */
        .right-questions-side {
            padding: 60px 50px;
            background: #fff;
            overflow-y: auto;
        }

        .faq-item-box {
            border-bottom: 1px solid #eee;
            margin-bottom: 5px;
        }

        /* Hiding Radio Input */
        .faq-item-box input[type="radio"] {
            display: none;
        }

        .question-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            font-size: 1.05rem;
            font-weight: 500;
            color: #2c3e50;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .question-trigger:hover {
            color: #AA8453;
        }

        .icon-toggle {
            font-size: 0.8rem;
            color: #95a5a6;
            transition: transform 0.4s ease;
        }

        .answer-text {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.4s ease;
            opacity: 0;
            color: #7f8c8d;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .answer-text p {
            padding-bottom: 20px;
        }

        /* --- ACCORDION LOGIC (Radio Hack) --- */
        
        /* When Checked */
        .faq-item-box input[type="radio"]:checked ~ .question-trigger {
            color: #AA8453;
        }

        /* Rotate Icon */
        .faq-item-box input[type="radio"]:checked ~ .question-trigger .icon-toggle {
            transform: rotate(180deg);
        }

        /* Expand Content */
        .faq-item-box input[type="radio"]:checked ~ .answer-text {
            max-height: 300px;
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-faq-container {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
            }
            .left-info-side {
                padding: 40px 25px;
                text-align: center;
                align-items: center;
            }
            .right-questions-side {
                padding: 30px 20px;
            }
            .faq-title {
                font-size: 2rem;
            }
        }