
.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}



.contact-info-section {
    flex: 1 1 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-info-section h2 {
        color: #E60012;
        margin-bottom: 20px;
    }

    .contact-info-section p {
        margin: 12px 0;
        font-size: 16px;
        line-height: 1.6;
    }

        .contact-info-section p strong {
            color: #E60012;
        }

.contact-map-section {
    flex: 1 1 100%;
    min-height: 600px;
    background-size: cover;
}

@media(max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map-section {
        height: 240px;
    }
}
