/* === FAQ SECTION STYLES === */
.faq-section { 
    max-width: 1200px;
    margin: 40px auto; 
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid #e2e8f0; 
    background: #ffffff; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-header { 
    background: linear-gradient(135deg, #0f172a, #1e293b); 
    color: #fff; 
    padding: 22px 30px; 
    font-size: 1.4rem; 
    font-weight: 700; 
    border-bottom: 4px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item { 
    border-bottom: 1px solid #f1f5f9; 
    margin: 0 30px;
}

.faq-item:last-child { 
    border-bottom: none; 
}

.faq-question {
    background: transparent; 
    color: #1e293b; 
    cursor: pointer; 
    padding: 22px 0; 
    width: 100%; 
    border: none;
    text-align: left; 
    outline: none; 
    font-size: 17px; 
    font-weight: 600; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.faq-question:hover { 
    color: #e11d48; 
}

.faq-question.active { 
    color: #2563eb; 
}

.faq-q-icon {
    width: 36px; 
    height: 36px;
    background: #fee2e2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-q-icon { 
    background: linear-gradient(135deg, #e11d48, #be123c); 
    color: white; 
    transform: rotate(360deg); 
}

.faq-toggle-icon { 
    font-size: 20px; 
    color: #94a3b8; 
    transition: all 0.3s ease;
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    background: #f1f5f9;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.faq-question.active .faq-toggle-icon { 
    transform: rotate(180deg); 
    background: #dbeafe; 
    color: #2563eb; 
}

.faq-answer {
    padding: 0 0 0 54px; 
    background-color: #f8fafc; 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease-out;
    opacity: 0;
}

.faq-question.active + .faq-answer { 
    opacity: 1; 
    padding-bottom: 20px; 
}

.faq-answer p { 
    color: #475569; 
    line-height: 1.6; 
    font-size: 15px; 
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section { 
        margin: 20px; 
    }
    .faq-header { 
        font-size: 1.2rem; 
        padding: 15px 20px; 
    }
    .faq-item { 
        margin: 0 15px; 
    }
}