
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&family=Poppins:wght@300;400&display=swap');

        .popup-overlay {
            display: flex;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .7);
            justify-content: center;
            align-items: center;
            z-index: 99999;
            padding: 20px;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            border: none;
            background: none;
            font-size: 32px;
            cursor: pointer;
            color: #666;
        }
        
        .popup-close:hover {
            background: none;
            border: none;
            color: #666;
        }

        .royal-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 900px;
            margin: 40px auto;
            border: 1px solid #D4AF37;
            background: #fdfaf6;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            /* This aligns everything vertically */
            align-items: center;

            position: relative;
            margin: 0;
            max-height: 90vh;
            overflow-y: auto;
        }

        .royal-col {
            flex: 1
        }

        .image-col img {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid #c5a059;
        }

        .text-col {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        .text-col h2 {
            font-family: 'Playfair Display', serif;
            color: #b8860b;
            margin-top: 0;
            border-bottom: 2px solid #D4AF37;
            padding-bottom: 10px;
        }

        .hero-text {
            font-style: italic;
            color: #555;
            margin: 20px 0;
        }


        .amenities-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin: 20px 0;
        }

        .amenity-item {
            background: #f5efe0;
            padding: 12px;
            text-align: center;
            border: 1px solid #eaddc0;
            font-weight: 500;
            color: #5d4a25;
        }

        .footer-info {
            margin-top: 20px;
            font-size: 1.2em;
            border-top: 1px dashed #D4AF37;
            padding-top: 15px;
        }

        .highlight {
            color: #b8860b;
            font-weight: bold;
        }

        @media (max-width: 600px) {
            .royal-container {
                flex-direction: column;
                padding: 12px
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .royal-col.image-col {
                display: block
            }
        }