/* Map Section */
.map-container {
    width: 100%;
    height: 400px;
    background: #f5f5f5;
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-address-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 90%;
}

.map-address-box h3 {
    margin: 0 0 8px 0;
    color: #D40018;
    font-size: 16px;
    font-weight: 600;
}

.map-address-box p {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
    
    .map-address-box {
        padding: 10px 15px;
        bottom: 10px;
    }
    
    .map-address-box h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .map-address-box p {
        font-size: 12px;
    }
}
