.maps-section {
    padding: 40px 0;
    background-color: #fff;
}

.maps-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
}

.maps-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-bottom: 20px;
}

.map-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.map-tab {
    padding: 10px 20px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.map-tab.active, .map-tab:hover {
    background-color: #f8c537;
    color: #1a1a1a;
}

.map-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    border: 1px solid #ddd;
}

.map-frame.active {
    display: block;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .maps-container {
        height: 50vh;
    }
    
    .map-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .map-tab {
        margin: 5px 0;
        width: 80%;
    }
}
