/* FAQ Criminal Cases Styles */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--pbmit-global-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-number {
    background: var(--pbmit-global-color);
    color: var(--pbmit-white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-question-text {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
}

.faq-toggle {
    color: var(--pbmit-global-color);
    font-size: 18px;
    transition: transform 0.3s ease;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.faq-answer ul {
    margin: 10px 0;
    padding-right: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.faq-answer strong {
    color: #333;
}

/* RTL Specific Adjustments */
[dir="rtl"] .faq-number {
    margin-left: 15px;
    margin-right: 0;
}

[dir="rtl"] .faq-toggle {
    margin-right: 15px;
    margin-left: 0;
}

[dir="rtl"] .faq-answer ul {
    padding-right: 20px;
    padding-left: 0;
}

/* Blog Content Styles */
.entry-content {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .faq-toggle {
        font-size: 16px;
    }
}
