main *{
    margin: 0;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container{
    width: 800px;
    max-width: 90vw;
    padding-top: 100px;
}
h1{
    margin-bottom: 20px;
    font-weight: 700;
}
.faq-item {
    border: 1.5px solid rgba(0,0,0,0.15);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    background: white;
    width: 100%;
    text-align: left;
    padding: 16px 16px 16px 0;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
}

.faq-question .chevron{
    width: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

h2 {
    flex-grow: 1;
    display: inline-block;
    margin: 0;
    font-size: 20px;
}

.faq-answer {
    display: none;
    padding: 10px 10px 10px 50px;
    font-size: 15px;
    line-height: 1.6;

    position: relative;
}
.faq-answer::before{
    position: absolute;
    content: "";
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.15);
    top: 0;
    left: 50px;
}


@media (max-width: 700px) {
    .faq-container{
        width: 800px;
        max-width: 90vw;
        padding-top: 10vw;
    }

    h1{
        font-size: 8vw;
    }
    h2{
        font-size: 5vw;
    }
    p{
        font-size: 4vw;
    }
    .faq-item {
        border-radius: 3vw;
        margin-bottom: 5vw;
    }
    .faq-question .chevron{
        width: 15vw
    }

    .faq-question svg {
        width:  5vw;
        height: 5vw;
    }

    .faq-question{
        padding: 2vw 2vw 2vw 0;
    }
    .faq-answer {
        padding: 2vw 2vw 2vw 15vw;
    }
    .faq-answer::before{
        left: 15vw;
    }

}

.footerhome{
    margin-top: 200px;
}