.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* Un fondo gris muy suave */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.linea-decorativa {
    width: 60px;
    height: 3px;
    background: #d9534f; /* El rojo que usamos para tu logo */
    margin: 10px auto 0;
}

.map-container {
    overflow: hidden;
    border-radius: 15px; /* Bordes redondeados modernos */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Sombra suave para dar profundidad */
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 450px; /* Puedes ajustar la altura aquí */
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}