h1 {
    margin: 0;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 80%;
    margin-inline: auto;
    margin-top: 180px;
}

.contact-top-left {
    max-width: 300px;
}

.form-section {
    margin-inline: auto;
    max-width: 80%;
    margin-top: 200px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

form {
    display: flex;
    flex-direction: column;
}

.email-phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

form input[type=text], input[type=email], input[type=tel], textarea {
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    min-height: 40px;
    font-size: x-large;
}

textarea {
    min-height: 100px;
}

form button {
    max-width: fit-content;
}

.bottom-svg {
    /* position: absolute;
    bottom: 0;
    z-index: -1; */
    width: 100%;
    height: 200px;
}


#faqs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    width: 100%;
    min-width: 340px;
    margin: 1rem;
    border: 5px;
    border-color: black;
}

.item-question {
    background-color: rgb(232, 236, 235);
    font-size: 1.2rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.item-answer {
    display: none;
    background-color: rgb(196, 196, 196);
    padding: 2rem;
    text-align: left;
}

.close {
    display: none;
}

.show-answer .item-answer {
    display: block;
}

.show-answer .close {
    display: inline;
}

.show-answer .expand {
    display: none;
}

@media only screen and (max-width: 768px) {

    body {
        text-align: center;
    }
    .contact-top {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 0.9fr 1fr;
        gap: 20px;
        justify-items: center;
    }

    .email-phone {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .form-section {
        margin-top: 50px;
    }

    form input[type=text], input[type=email], input[type=tel], textarea {
        width: 100%;
    }


}