:root {
    --primary-color: #2C3E50;
    --secondary-color: #C0A16B;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

.maps {
    padding: 80px 5%;
    background-color: var(--light-bg); 
}

.maps__container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.maps__div {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    display: flex;
    flex-direction: column; 
    transition: transform 0.3s ease;
}

.maps__div:hover {
    transform: translateY(-5px); 
}

.maps__content {
    padding: 25px;
    text-align: center;
}

.maps__div h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.maps__div p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.maps__div--frame {
    width: 100%;
    height: 350px; 
    background: #ddd;
}

.maps__div--frame iframe {
    width: 100% !important;
    height: 100% !important; 
    border: 0;
    display: block;
}

@media (max-width: 850px) {
    .maps__container {
        flex-direction: column;
    }

    .maps__div {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

    .maps__div--frame iframe {
        width: 100% !important;
        height: 300px;
    }
}