body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    overflow: hidden; /* Prevent scrolling if content overflows */
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 0px 0;
    text-align: center;
}

h1 {
    margin: 0;
}

.video-container {
    width: 100%; /* Use full width for mobile screens */
    max-width: 600px; /* Limit the width for larger screens */
    background: #ffffff;
    
}

video {
    width: 100%; /* Make the video responsive */
    height: auto; /* Maintain aspect ratio */
   
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .video-container {
        width: 95%; /* Reduce width slightly for smaller screens */
        padding: 0px; /* Reduce padding for smaller screens */
    }

    video {
        border-radius: 5px; /* Slightly smaller border radius */
    }
}

/* High-resolution mobile-specific styles */
@media (max-width: 1242px) and (max-height: 2208px) {
    .video-container {
        width: 90%; /* Adjust width for high-resolution mobile screens */
        max-width: none; /* Remove max-width restriction */
        padding: 0px; /* Reduce padding */
    }

    video {
        width: 100%; /* Ensure the video takes up the full container width */
        height: auto; /* Maintain aspect ratio */
        border-radius: 5px; /* Slightly smaller border radius */
    }
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}