.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
    width: 100%;
}

.contact-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1;
    padding: 3rem;
}


.contact-description h1 {
    font-size: 26px;
    font-weight: bold;
    color: #008000;
    text-transform: uppercase;
}

.contact-description p,
.contact-form p {
    max-width: 80%;
    text-align: left;
    font-weight: lighter;
}

.contact-description p a {
    font-weight: bold;
    color: #DD9854;
    text-decoration: none;
}

.contact-description p a:hover {
    color: #008000;
    text-decoration: underline;
}

.contact-description h3 {
    font-size: 18px;
    font-weight: normal;
    color: #008000;
    text-transform: capitalize;
}

.contact-form {
    width: 80%;
    height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    background-color: #fff;

}

.contact-form h3 {
    font-size: 24px;
    font-weight: normal;
    color: #808080;
    text-transform: uppercase;
}

.contact-form p {
    color: #008000;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid gray;
}

form .name-field {
    width: 100%;
    display: flex;
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #808080;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.checkbox-container input:checked+.checkmark {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.checkbox-container input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

form button {
    margin: auto;
    padding: .5rem;
    border-radius: 5px;
    border: 1px solid #008000;
    color: #008000;
}

@media screen and (max-width: 999px) {}

@media screen and (max-width: 690px) {

    .contact,
    .support,
    form .name-field {
        flex-direction: column;
    }

    .contact-description {
        justify-content: center;
        align-items: center;
    }

    .contact-description p {
        max-width: 100%;

    }

    .contact-form {
        height: auto;
    }


}