.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: none;
    text-align: right;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform .3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-color);
}

.faq-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0 0 2rem 0;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-question { font-size: 1rem; padding: 1.25rem; }
    .faq-cta { padding: 2rem 1rem; }
    .faq-cta h3 { font-size: 1.5rem; }
    .faq-cta-buttons { flex-direction: column; }
    .faq-cta-buttons .btn { width: 100%; }
}

/* في حال متغيّرات CSS مش متعرفة في الثيم، حط fallback */
:root {
    --text-color: #111;
    --text-light: #555;
    --primary-color: #0d6efd;
}
