/* FAQ Section Styles */
.zaimy-faq-section {
    margin: 1.5rem 0;
    max-width: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-sizing: border-box;
}

.zaimy-faq-list {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

/* ЗАГОЛОВОК ВНУТРИ БЛОКА */
.zaimy-faq-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    padding: 1.25rem 1.25rem 1rem;
    color: #1a1a1a;
    text-align: left;
    width: 100%;
    line-height: 1.3;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
}

/* ВСЕ АККОРДЕОНЫ ПОСТОЯННО ОТКРЫТЫ */
.zaimy-faq-item {
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.zaimy-faq-item:last-child {
    border-bottom: none;
}

/* Заголовок вопроса */
.zaimy-faq-question {
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    position: relative;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    cursor: default;
}

.zaimy-faq-question h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    flex: 1;
    line-height: 1.3;
    padding-right: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

/* Ответ всегда видим */
.zaimy-faq-answer {
    padding: 0 1.25rem 1.25rem;
    background: white;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.zaimy-faq-answer div {
    line-height: 1.5;
    color: #4a5568;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.zaimy-faq-answer p {
    margin: 0 0 0.75rem 0;
}

.zaimy-faq-answer p:last-child {
    margin-bottom: 0;
}

.zaimy-faq-answer ul,
.zaimy-faq-answer ol {
    margin: 0 0 0.75rem 1.25rem;
}

.zaimy-faq-answer li {
    margin-bottom: 0.25rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .zaimy-faq-section {
        margin: 1rem 0;
    }
    
    .zaimy-faq-title {
        padding: 1rem 1rem 0.875rem;
        font-size: 1.2rem;
    }
    
    .zaimy-faq-question {
        padding: 0.875rem 1rem;
    }
    
    .zaimy-faq-question h3 {
        font-size: 0.95rem;
        padding-right: 1rem;
    }
    
    .zaimy-faq-answer {
        padding: 0 1rem 1rem;
    }
}