/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.cookie-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-accept {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.btn-accept:hover {
    background: #1e40af;
}

.btn-manage {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 14px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.btn-manage:hover {
    background: #1e3a8a;
    color: white;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    text-decoration: none;
}

.logo a {
   font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none; 
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #1e3a8a;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1,
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e3a8a;
}

.section-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Hotels Section */
.hotels-section {
    padding: 100px 0;
    background: #f8fafc;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.hotel-card {
    background: #1e3a8a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hotel-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-content {
    padding: 30px;
}

.hotel-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.hotel-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.learn-more {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.learn-more::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(3px);
}

/* Heritage Section */
.heritage-section {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.heritage-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Casino Section */
.casino-section {
    padding: 100px 0;
    background: #f8fafc;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.casino-card {
    background: #1e3a8a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.casino-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.casino-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.casino-card:hover .casino-image img {
    transform: scale(1.05);
}

.casino-content {
    padding: 30px;
}

.casino-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.casino-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #e5e7eb;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
}

.faq-content {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 24px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: -2px;
    background: #f1f5f9;
}

.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #1e3a8a;
    transform: rotate(0deg);
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #d1d5db;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.2;
}

.contact-header p {
    color: #333;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.required {
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 2px solid #000;
    background: transparent;
    padding: 16px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1e3a8a;
    border-bottom-width: 3px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group textarea {
    resize: none;
    min-height: 120px;
    line-height: 1.6;
    padding-top: 20px;
}

.submit-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 24px 0;
    border-radius: 0;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.form-group.full-width::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-bottom: 50px solid #000;
    z-index: 1;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-section h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.newsletter-section {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 320px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.newsletter-form:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Additional Styles */
body.nav-open {
    overflow: hidden;
}

body.loaded {
    opacity: 1;
}

img {
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Preloader styles if needed */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.book-section {
    padding: 0 0 70px;
}

.book-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.book-image {
    max-width: 530px;
    width: 100%;
}

.book-image img {
    width: 100%;
}

.book-buttons {
    display: flex;
        gap: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        min-width: 140px;
    }

    .btn-primary {
        background: #101C67;
        display: inline-block;
        color: #fff;
        text-decoration: none;
    }

    .btn-secondary {
       border: 1px solid #101C67;
        display: inline-block;
        color: #101C67;
        text-decoration: none;
    }

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 32px;
    }

    .hotels-grid,
    .casino-grid,
    .travel-grid,
    .dining-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-header h2 {
        font-size: 40px;
    }

    .form-row {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .newsletter-section {
        justify-content: flex-start;
    }

    .newsletter-form {
        max-width: 280px;
    }

    .book-content {
        gap: 80px;
    }

    .book-text h2 {
        font-size: 42px;
    }

    .book-text p {
        margin-bottom: 40px;
    }

    .book-buttons {
        gap: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        min-width: 140px;
    }

    .book-image {
        height: 350px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {

    .burger-btn {
        display: flex;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 14px;
    }

    .hotels-grid,
    .casino-grid,
    .travel-grid,
    .dining-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hotel-card,
    .casino-card,
    .travel-card,
    .dining-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cookie-content {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .cookie-content h3 {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-manage {
        min-width: auto;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .book-content {
        flex-direction: column;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 24px;
    }

    .hotels-section,
    .heritage-section,
    .casino-section,
    .faq-section,
    .contact-section,
    .travel-section,
    .dining-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .hotel-content,
    .casino-content,
    .travel-content,
    .dining-content {
        padding: 24px 20px;
    }

    .hotel-content h3,
    .casino-content h3,
    .travel-content h3,
    .dining-content h3 {
        font-size: 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    .faq-question {
        padding: 18px 16px;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 18px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .cookie-content {
        padding: 24px 16px;
        margin: 0 16px;
    }

    .cookie-content h3 {
        font-size: 20px;
    }

    .cookie-content p {
        font-size: 14px;
    }

    .btn-accept,
    .btn-manage {
        padding: 14px 32px;
        font-size: 14px;
    }

    .book-section {
        padding: 70px 0;
    }

    .book-content {
        gap: 40px;
    }

    .book-text h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .book-text p {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .book-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        padding: 16px 20px;
        font-size: 15px;
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .book-image {
        height: 250px;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-attachment: scroll;
    }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    /* You can add dark mode styles here if needed */
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .burger-btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero {
        background: none !important;
        color: #000 !important;
        padding: 20pt 0;
    }

    .section-header h2 {
        color: #000 !important;
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-up {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .hotels-section,
    .heritage-section,
    .casino-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hotel-content,
    .casino-content {
        padding: 24px;
    }
}
              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                