.faq-redesign {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.faqr-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.faqr-header span{
    color: #0056b3
}
/* Accordion Styles */
.faqr-accordion {
    margin-bottom: 30px;
}

.faqr-item {
    border-bottom: 1px solid #f0f0f0;
}

.faqr-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: all 0.3s ease;
}

.faqr-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0056b3;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faqr-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 5px;
}

/* Active State */
.faqr-item.active .faqr-question h3 {
    color: #0056b3;
}

.faqr-item.active .faqr-icon {
    transform: rotate(-135deg);
    border-color: #0056b3;
}

.faqr-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.faqr-item.active .faqr-answer {
    max-height: 1000px;
    /* Large enough to fit content */
    padding-bottom: 25px;
    opacity: 1;
}

.faqr-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 767px) {


    .faqr-question h3 {
        font-size: 14px;
    }
}