.contact-page-container {
    padding-top: 100px;
    padding-bottom: 4rem;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-wrapper {
    max-width: none;
    width: 100%;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(29, 29, 58, 0.1);
    height: 100%;
    min-height: 525px; /* Adjust height to match form */
    border: 1px solid rgba(29, 29, 58, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr;
    }
}