/* Contact Us Page Styles */
.contact-main {
    position: relative;
    width: 100%;
    height: calc(100% - 80px);
    overflow: hidden;
    display: flex;
    align-items: center; /* Vertically center */
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align */
    gap: 20px;
    margin-left: 10%; /* Left margin as seen in screenshot */
    max-width: 80%;
}

.contact-content img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Specific spacing tweaks based on screenshot */
.img-19 {
    margin-bottom: 30px; /* Space between subtitle and details */
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Space between the detail rows */
}

.img-20, .img-21, .img-22 {
    /* Ensure these align nicely */
    align-self: flex-start;
}
