.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Adjust spacing between columns */
    margin: 20px 0;
}

.address-container, .form-container {
    flex: 1; /* Each section takes equal space */
}

.address-container {
    max-width: 400px; /* Optional: Limit the width of the address */
}