body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

header img {
    max-width: 50% !important;
    height: auto;
}

.map-container {
    position: relative;
    padding-bottom: 0; /* Remove fixed aspect ratio */
    height: calc(100vh - 56px); /* Full height minus header height (match navbar) */
    overflow: hidden;
    width: 100%; /* Ensure full width */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}