/* ===========================================
   FAQ PAGE STYLES
   =========================================== */

/* FAQ Page */
.faq-page {
    background-color: #FFFFFF;
    min-height: 100vh;
    padding: 60px 0;
}

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

/* Main Title */
.faq-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* Section Title */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accent-bar {
    width: 4px;
    height: 24px;
    background-color: #E60013;
    border-radius: 2px;
}

/* Category Section */
.category-section {
    margin-bottom: 80px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.category-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-item:hover {
    border-color: #E60013;
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.1);
    transform: translateY(-2px);
}

.category-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    flex: 1;
    line-height: 1.4;
}

.arrow-icon {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #E60013;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.category-item:hover .arrow-icon {
    transform: translateX(3px);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #E0E0E0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F8F8F8;
}

.faq-question.active {
    background-color: #F0F0F0;
}

.faq-question .arrow-icon {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E60013;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-question.active .arrow-icon {
    transform: rotate(90deg);
}

.question-prefix {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E60013;
    flex-shrink: 0;
    margin-top: 2px;
}

.question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    line-height: 1.5;
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

}

.faq-answer.show {
    max-height: 500px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 20px 30px 25px 30px;
}

/* Active Navigation Link */
.nav-link.active {
    color: #D63384;
    font-weight: 600;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-page {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-item {
        padding: 15px;
    }

    .category-text {
        font-size: 14px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .question-text {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 15px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .accent-bar {
        width: 3px;
        height: 18px;
    }

    .category-item {
        padding: 12px;
    }

    .category-text {
        font-size: 13px;
    }

    .arrow-icon {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px 0;
    }

    .question-prefix {
        font-size: 14px;
    }

    .question-text {
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 12px;
        padding: 12px 15px 15px 15px;
    }
}

/* ===========================================
   FEE FAQ PAGE STYLES
   =========================================== */

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999;
}

.breadcrumb-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #E60013;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Questions List */
.questions-list {
    margin-bottom: 40px;
}

.question-item {
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.question-item:hover {
    background-color: #F8F8F8;
    padding-left: 10px;
}

.question-item:last-child {
    border-bottom: none;
}

.question-prefix {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #E60013;
    flex-shrink: 0;
    margin-top: 2px;
}

.question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    line-height: 1.5;
    flex: 1;
}

/* Answer Sections */
.answer-sections {
    margin-top: 40px;
}

.answer-section {
    margin-bottom: 30px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.answer-question-bar {
    background-color: #E3F2FD;
    padding: 15px 20px;
    border-bottom: 1px solid #E0E0E0;
}

.answer-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.4;
}

.answer-content {
    padding: 20px;
    background-color: #FFFFFF;
}

.answer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #2C2C2C;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.answer-prefix {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #E60013;
    margin-right: 5px;
}

.answer-link {
    color: #1976D2;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.answer-link:hover {
    color: #E60013;
    text-decoration: none;
}

.answer-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin: 10px 0 0 0;
    padding-left: 15px;
    border-left: 2px solid #E0E0E0;
}

/* Responsive Design for Fee FAQ Page */
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .question-item {
        padding: 15px 0;
    }

    .question-prefix {
        font-size: 14px;
    }

    .question-text {
        font-size: 14px;
    }

    .answer-question-bar {
        padding: 12px 15px;
    }

    .answer-question-text {
        font-size: 14px;
    }

    .answer-content {
        padding: 15px;
    }

    .answer-text {
        font-size: 13px;
    }

    .answer-prefix {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        font-size: 11px;
    }

    .question-item {
        padding: 12px 0;
        gap: 8px;
    }

    .question-prefix {
        font-size: 13px;
    }

    .question-text {
        font-size: 13px;
    }

    .answer-question-bar {
        padding: 10px 12px;
    }

    .answer-question-text {
        font-size: 13px;
    }

    .answer-content {
        padding: 12px;
    }

    .answer-text {
        font-size: 12px;
    }

    .answer-prefix {
        font-size: 12px;
    }

    .answer-note {
        font-size: 11px;
    }
}

a {
    text-decoration: none;
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-answer.show {
    display: block;
    max-height: 500px;
    opacity: 1;
    margin-top: 0.5rem;
}