.faq-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.faq-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    
}

.faq-item p{
    width: 311px;
    height: auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: #242424;
    text-align: start;
    line-height: 1.6;
}

.faq-item h3{
    font-weight: bold;
    color: #242424;
    padding: 8px;
    border-bottom: #100169 solid 2px;
    margin-bottom: 12px;
}