/* 
  MAP SECTION STYLES
  Responsive Google Maps embed with description
*/

/* Map Section */
.map-section {
    padding: 4rem 1rem;
    background: var(--background-alt, #f7f8f9);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color, #2D3047);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Map Container */
.map-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

/* About City/Area Description */
.about-city {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-city p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color, #333);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .map-section {
        padding: 3rem 1rem;
    }
    
    .map-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        border-radius: 8px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .about-city p {
        font-size: 1rem;
    }
}

