/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    line-height: 1.6;
}

/* Verification image container - takes up full viewport initially */
.verification-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.verification-image {
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

/* Main content container - pushed below the viewport */
.content-container {
    padding: 20px;
    margin-top: 50vh; /* Push content down significantly */
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 50vh; /* Additional padding to push content down */
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

nav {
    margin-bottom: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

.hotel {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.disclaimer {
    background-color: #111;
    padding: 20px;
    border-radius: 5px;
    margin-top: 40px;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-container {
        margin-top: 50vh;
    }
    
    header {
        padding-top: 50vh;
    }
}