.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    gap: 30px;
    height: 90vh; 
}

.contact-card {
    width: 50%;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    height: 500px;
}

.contact-card h2 {
    margin-bottom: 20px;
    color: #6f96cc;
    font-size: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.contact-item i {
    font-size: 28px;
    color: #6f96cc;
    margin-right: 15px;
}

.map {
    width: 50%;
    border-radius: 12px;
    overflow: hidden;
}

.contact__map {
    height: 100%;
    border-radius: 12px;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }
    .contact-card, .map {
        width: 100%;
    }
    .contact__map {
        height: 400px;
    }
}
