.faqs{
    background-color:rgba(0,0,0,0.03);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.faqs-main-container{
    padding: 100px 10px;
    width: 100%;
    max-width: 1124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.questions-container{
    width: 100%;
}
.question{
    border-bottom: 1px solid #fff;
}
.question button{
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    outline: none;
    font-size: 16px;
    color: darkorange;
    font-weight: 500;
    cursor: pointer;
}
.question p{
    font-size: 16px;
    max-height: 0;
    opacity: 0;
    background-color: #fff;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #000;
}

.question p.show{
    max-height: 200px; 
    opacity: 1;
    padding:30px 15px 30px 15px;
}
.question button .d-arrow.rotate{
    transform: rotate(180deg);
}
.faqs-text-title{
    font-size: 20px;
    color: blue;
    font-weight: 500;
    margin: 30px 0px 12px 0px;
}
.faqs-text{
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
}
#faqs-cta-btn{
    padding: 10px 14px;
    background-color: blue;
    color: white;
    font-weight: 500;
    font-size: 16px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.15s, box-shadow 0.15s;
}
#faqs-cta-btn:hover{
    background-color: rgb(74, 74, 244);
    box-shadow: 0px 4px 6px rgba(0,0,0,0.15);
}

@media screen and (max-width: 600px) {
    .question p.show{
        max-height: 250px; 
    }
    .faqs-cta{
        padding-left: 10px;
    }
}