/* FAQ Container */
.about-area {
    max-width: 1200px;
    margin: auto;
}

/* Category Navigation */
.faq-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.faq-nav a {
    background: #202c5a;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.faq-nav a:hover,
.faq-nav a.active {
    background: #c1272d;
    color: #fff !important;
}

/* Category Block */
.category {
    margin-bottom: 40px;
    scroll-margin-top: 140px;
}

/* Category Heading */
.category-title {
    background: #c1272d;
    color: #fff !important;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* FAQ Card */
.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Question */
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 60px 20px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #202c5a;
    cursor: pointer;
    position: relative;
}

/* Plus Sign */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 700;
    color: #202c5a;
}

.faq-question.active::after {
    content: '-';
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #f8f9fb;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.8;
}

/* Mobile */
@media (max-width:768px){

    .faq-nav {
        justify-content: flex-start;
    }

    .faq-nav a {
        font-size: 13px;
        padding: 8px 14px;
    }

    .category-title {
        font-size: 20px;
    }

    .faq-question {
        font-size: 16px;
        padding-right: 50px;
    }
}