* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.contact-us-image-container {
    width: 100%;
    background-color: black ;
    height: clamp(300px, 15vh, 400px);
    position: relative;
    overflow: hidden;
}

.contact-us-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us-heading-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-heading {
    color: white;
    font-size: clamp(24px, 5vw, 50px);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.logo-image {
    width: clamp(100px, 15vw, 100px);
    height: auto;
    margin-bottom: 50px;
}

.contact-us-form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.logo-and-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 60px;
    flex-direction: column;
}

.form-container {
    border-left: 1px solid rgb(171, 171, 171);
    margin: 30px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    gap: 10px;
    width: 100%;
    max-width: 540px;
}

.form-container form input {
    padding-inline: 10px;
    padding-block: 5px;
    border-radius: 5px;
    border: 1px solid rgb(171, 171, 171);
    font-size: 15px;
    margin-top: 10px;
}

.form-container form label {
    font-weight: bold;
}

.form-required {
    font-size: medium;
    color: rgb(171, 171, 171);
}

.form-container form textarea {
    resize: vertical;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgb(171, 171, 171);
    min-height: 125px;
    font-size: 15px;
    padding-inline: 10px;
    padding-block: 5px;
    margin-top: 10px;
}

.submit-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.submit-button-container button {
    width: 200px;
    font-size: 17px;
    padding: 10px;
    background-color: #74C708;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.logo-and-info-text-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
}

.form-element {
    display: flex;
    flex-direction: column;
}

.form-error {
    font-size: small;
    color: red;
    margin-top: 2px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    padding-bottom: 60px;
    width: 100%;
}

@media screen and (max-width: 700px) {
    * {
        font-size: 14px;
    }

    .form-container form input {
        font-size: 12px;
    }

    .form-container form textarea {
        font-size: 12px;
    }

    .contact-us-image-container {
        height: 150px;
    }
}

@media screen and (max-width: 860px) {
    .contact-us-form-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .logo-and-info-container {
        display: none;
    }

    .form-container {
        border: none;
        width: 100%;
    }

    .logo-and-info-text-footer {
        display: block;
    }

    footer {
        justify-content: space-between;
    }

}

@media screen and (max-width: 590px) {
    .form-container {
        margin-block: 15px;
        padding-block: 15px;
    }
}

@media screen and (max-width: 490px) {
    footer {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
}

@media screen and (max-width: 420px) {
    .submit-button-container button {
        width: 100%;
    }
}