/* Extracted from index.html */
.location-section {
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 30px;
    padding: 0 1rem;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    /* Aspect ratio for 600/450 = 4/3 */
    aspect-ratio: 4/3; 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.seo-hidden {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
    opacity: 0;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}
