/* =========================================
   FAQ Section Shared Styles
   ========================================= */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white, #ffffff);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
    border-radius: var(--radius-md, 8px);
    background: var(--bg-white, #ffffff);
    transition: var(--transition-base, all 0.3s ease);
    overflow: hidden;
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: transparent;
    background-color: transparent !important;
    border: none !important;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    text-align: right;
    font-size: 1.15rem;
    font-family: inherit;
    font-weight: 700;
    color: var(--primary-main, #0f172a);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast, all 0.2s ease);
}

.faq-question i {
    color: var(--primary-blue, #1a73e8);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    background: #fafbfe;
    opacity: 0;
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted, #64748b);
    line-height: 1.7;
    font-size: 1rem;
}