/* Map Styles */
.location {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
    font-weight: 600;
}

.location-description {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Map InfoWindow Styles */
.gm-style .gm-style-iw {
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.3);
}

.gm-style .gm-style-iw h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gm-style .gm-style-iw p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gm-style .gm-style-iw a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.gm-style .gm-style-iw a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location {
        padding: 3rem 0;
    }

    .location h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }
}
