.faq_section{
    background-image: url(../img/home/borders.svg);
    background-color: #EEF5FF;
    padding: 60px 0;
    border: 1px solid #D8E7FF;
    margin-bottom: 40px;
}
.faqhead{
    color: #122247;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    margin: 0 0 3%;
}
.faqdiv{
    text-align: center;
    display: flex;
    justify-content: center;
}
.faqblock{
    width: 80%;
    display: flex;
    padding: 5%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 12px;
    border: 1px solid #D8E7FF;
    background: #FFF;
}
.faqtitle{
    color: #122247;
    text-align: center;
    font-family: 'Poppins-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 28px; 
    margin: 0;
}
.quesDiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.quesDiv2{
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: #F2F4F7;
    -webkit-text-fill-color: #122247;
}
.quesDiv2:hover{
    background: #EEF5FF;
    -webkit-text-fill-color: #004FE5;
    cursor: pointer;
}
.questionText{
    margin: 0;
    font-family: 'Poppins-Regular';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.backButton {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 5%;
}
.questionTitle{
    color: #122247;
    font-family: 'Poppins-Regular';
    font-size: 18px;
    font-weight: 600;
    line-height: 26px; 
    text-align: start;
}
.answerDiv{
    width: 100%;
    display: none;
}
.answerTemplate{
    width: 100%;
}
.answerContent{
    margin-left: 40px;
    text-align: start;
}
.line{
    margin: 3% 0;
    height: 1px;
    background: #D0D5DD;
}
.helpful{
    color: #122247;
    text-align: center;
    font-family: 'Poppins-Regular';
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; 
}
.helpfulspace{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.answerText{
    color: #122247;
    font-family: 'Poppins-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}
.answerText a{
    color : #004FE5;
    word-wrap: break-word;
}
.answerText p{
    font-family: 'Poppins-Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}
.vote{
    display: flex;
    gap: 12px;
}
.voteButton{
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: #122247;
    font-family: 'Poppins-Regular';
    font-size: 16px;
    font-weight: 600;
}
.voteButton:hover{
    cursor: pointer;
}
.backButton:hover{
    cursor: pointer;
}
.voteButton svg {
    display: none;
}
@media (max-width: 850px){
    .faqblock{
        width: 90%;
        padding: 15% 7%;
    }
    .backButton {
        margin-bottom: 10%;
    }
    .answerContent {
        margin-left: 0px;
    }
    .line {
        margin: 10% 0;
    }
    .helpful {
        font-size: 16px;
        line-height: 24px;
    }
    .helpfulspace {
        display: flex;
        flex-direction: column;
    }
    .helpfulgap{
        margin-bottom: 5%;
    }
    .vote {
        align-self: center;
        flex-direction: column;
    }
    .voteButton svg {
        display: inline-block;
        vertical-align: middle;
    }
    .questionTitle,.answerText,.answerText p{
        font-size: 16px;
    }
    
}