.course-faq-wrapper {
    max-width: 800px;
    margin: 30px auto;
    font-family: inherit;
}

.course-faq-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3440;
    margin-bottom: 20px;
}

.course-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.course-faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.course-faq-item.active {
    border-color: #3E7DEB;
    box-shadow: 0 4px 12px rgba(62, 125, 235, 0.1);
}

.course-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', 'Baloo Da 2', sans-serif;
    padding: 10px 14px 10px 14px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    color: #2d3440;
    background: #fff;
    transition: background 0.3s, color 0.3s;
    user-select: none;
    position: relative;
}
.course-faq-question .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #9ca3af;
}
.course-faq-item.active .course-faq-question .arrow svg {
    transform: rotate(180deg);
    color: #3E7DEB;
}
.course-faq-question:hover {
    background: #f9fafb;
}



.course-faq-item.active .course-faq-question {
    color: #3E7DEB;
    background: #f7f9fc;
    border-bottom: 1px solid #e5e7eb;
}

.course-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #ffffff;
}

.course-faq-answer-inner {
    padding: 10px 14px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.course-faq-answer-inner p:last-child {
    margin-bottom: 0;
}