/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Header Section */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9ebbd;
    padding: 10px 0;
}

.banner {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    text-align: center;
    background-color: #e4ce93; /* Change this to any color */
    padding: 10px; /* Optional: Adds spacing around the video */
}

.video-section video {
    width: 100%;
    max-width: 1080px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    background-color: #a5d6a7;
    padding: 20px;
}

.office {
    margin-bottom: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.map-button {
    display: inline-block;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    color: black;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 20px;
    }

    .video-section video {
        width: 100%;
        max-width: 100%;
    }
}
