* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.5;
            color: #333a48;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1536px;
            margin: 0 auto;
            padding: 0 20px;
			/* text-align: center; */
        }

        .container-text-video {
            max-width: 1026px;
            margin: 0 auto;
            padding: 0 20px;
			/* text-align: center; */
        }	

        .site-header {
            background-color: #070707;
            padding: 20px 0;
        }
        .site-header img {
            margin: 0 auto;
            display: block;
        }

        .content-card {
            display: flex;
            flex-wrap: wrap;
            padding: 60px 0;
        }
        .content-card-left {
            width: 70%;
            padding: 0 50px 0 0;
        }
        .content-card-left h1 {
            font-size: 2.8rem;
            line-height: 60px;
            font-weight: 700;
            margin-bottom: 30px;
        }
        .content-card-left h1 span {
            color: #f0b42f;
        }
        .content-card-left p {
            font-size: 22px;
            margin-bottom: 30px;
        }
        .hotel-amenities {
            display: flex;
            font-size: 16px;
            font-weight: 500;
        }
        .hotel-amenities span {
            background-color: #f3f4f6;
            margin-right: 10px;
            padding: 6px 16px;
            border-radius: 20px;
            display: flex;
            align-items: center;
        }
        .hotel-amenities span svg {
            margin: 0 5px 0 0;
        }
        .video-wrapper {
            width: 30%;
        }
        
        
        .contact-info {
            background: linear-gradient(135deg, #c81600 0%, #f81400 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
        }
        
        .contact-info p {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .contact-info strong {
            font-weight: 600;
        }
        
        .contact-details {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .contact-item::before {
            content: "📞";
            font-size: 1.2rem;
        }
        
        .contact-item:last-child::before {
            content: "✉️";
        }
        
        .video-section {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .video-wrapper video {
            width: 237px;
			height: 416px;
            aspect-ratio: 9 / 16;
            border: 4px solid #000;
			margin: auto;
			display: block;
			padding: 0;
        }

        .photo-gallery-section {
            padding: 60px 0 0;
            background-color: #f9fafb;
        }
        .photo-gallery-section .swiper {

        }
        .photo-gallery-section .swiper .swiper-wrapper {
            padding: 0 0 40px;
        }
        .photo-gallery-section .swiper .swiper-slide img {
            max-width: 100%;
            height: auto;
            aspect-ratio: 400 / 300;
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
        }
        
        .calendar-section {
            padding: 60px 0;
            background-color: #f9fafb;
        }
        
        .photo-gallery-header,
        .calendar-header,
        .getintouch-header {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 60px;
        }
        
        .photo-gallery-header h2,
        .calendar-header h2,
        .getintouch-header h2  {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .photo-gallery-header p,
        .calendar-header p,
        .getintouch-header p {
            font-size: 1.5rem;
            color: #666;
        }
        
        .calendar-container {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }

        .getintouch-section {
            padding: 60px 0;
            background-color: #ffffff;
        }
        .getintouch-section .container {
            max-width: 1120px;
        }
        .getintouch-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .getintouch-info > div {
            width: 33.3333%;
            text-align: center;
        }
        .getintouch-img {
            margin: 0 0 40px;
        }
        .getintouch-img img {
            max-width: 100%;
            height: auto;
        }
        .getintouch-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #4983f1;
            border-radius: 100%;
        }
        .getintouch-info > div h4 {
            font-size: 24px;
            font-weight: 500;
        }
        .getintouch-info > div p {
            font-size: 18px;
            margin: 8px 0 12px;

        }
        .getintouch-info > div a {
            color: #4983f1;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
        }
        
        /* Responsive design */
        @media (max-width: 1023px) {
            .content-card-left {
                width: 100%;
                padding: 0 0 40px;
            }
            .video-wrapper {
                width: 100%;
            }
            .photo-gallery-section {
                padding: 30px 0 0;
            }
            .calendar-section {
                padding: 30px 0 0;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            
            .content-card {
                padding: 20px;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .contact-details {
                flex-direction: column;
                gap: 15px;
            }
            
            .calendar-header h2 {
                font-size: 1.8rem;
            }
            .getintouch-info > div {
                width: 100%;
                padding: 0 0 20px;
            }
        }
        
        /* Animation */
        .content-card {
            animation: slideUp 0.6s ease-out;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }