.contact-section {
    padding: 15px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.section-title-contact{
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #000000;
    font-weight: 700;
    position: relative;
}

.section-title-contact::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #7c3aed;
    border-radius: 2px;
}


#map {
    width: 100%;
    height: 100%;
}

.ol-attribution {
    display: none !important;
}

.contact-info {
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 22px;
    color: #6B46C1;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 300px;
    }
}