.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-container .col-md-6 {
    min-height: 400px; /* Ensure proper height */
}

.contact-container iframe {
    width: 100%;
    height: 600px; /* Fix height to avoid overlap */
    border-radius: 10px;
}

.contact-container form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-container .col-md-6 {
        width: 100%;
    }
}
