.contact-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
}

.form-map-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.form-container {
    width: 45%;
}

.contact-us h1 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.contact-us p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

form {
    text-align: left;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

form button {
    background-color: var(--secondary-blue-text-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.map {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}

.map img {
    width: 100%;
    height: auto;
}

.locations {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    align-items: center;
}

.location img {
    width: 100px;
    height: auto;
}

.team {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.team-member p {
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}


.team-member .name {
    font-weight: bold;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {

    .form-map-container {
        flex-direction: column;
    }

    .form-container,
    .map {
        width: 100%;
        margin-bottom: 20px;
    }

    .locations,
    .team {
        flex-direction: column;
    }

    .location img,
    .team-member img {
        width: 80px;
    }

    .contact-us h1 {
        font-size: 20px;
    }

    .contact-us p,
    form label {
        font-size: 14px;
    }

    form button {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-us {
        margin-top: 16px;
        padding: 32px;
    }

    .contact-us h1 {
        font-size: 1.75rem;
    }

    .contact-us p,
    form label {
        font-size: 12px;
    }

    form button {
        padding: 10px 15px;
    }

    .locations {
        margin: auto;
        display: flex;
        flex-direction: row;
    }

    .location {
        flex-grow: 1;
    }

    .location {
        text-align: center;
    }

    .team {
        display: flex;
        flex-direction: row;
    }

    .team-member p{
        margin-top: 8px;
        text-align: center;
    }

}
