.faq-samples {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}
.faq-main-heading {
    color: #3D464D;
}
.faq-section hr.faq-seperator {
    margin-top: 26px !important;
    margin-bottom: 24px !important;
}
.faq-section .faq-button-container {
    text-align: center;
    margin-top: 44px;
    margin-bottom: 20px;
}
.faq-section .faq-button {
    padding: 12px 35px;
    font-size: 22px;
}
.faq-description {
    color: #000000;
    margin-bottom: 50px !important;
}
.faq-underline {
    display: block;
    width: 60px;
    height: 2px;
    background: #f94616;
    margin: 12px auto 18px;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.faq-item + .faq-item {
    margin-top: 20px;
}
.faq-item .faq-question {
    padding: 20px 15px;
    
}
.faq-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 15px;
    height: 15px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease;
}
.faq-item .faq-question:focus {
    outline: none;
    box-shadow: none;
}
.faq-question {
    width: 100%;
    padding: 20px;
    color: #3D464D;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.faq-item {
    border: 1px solid #5F5F5F;
}

.faq-item.active .faq-arrow {
    transform: translateY(-50%) rotate(-45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #959595;
    line-height: 150%;
    font-size: 16px;
}

@media (max-width: 575px) {
    .faq-section .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .faq-item .faq-question {
        padding: 20px 40px 20px 15px;
    }
}