/* Map section */
.map-section {
    background: var(--white);
    padding: 5rem 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(46, 142, 145, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Map Mobile */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}