.faq-block {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .faq-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .faq-toggle-all {
        background: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 5px;
        padding: 8px 20px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .faq-toggle-all:hover {
        background: #e9ecef;
    }
    
    /* Стили элементов FAQ */

    .faq-item {
        margin-bottom: 10px;
    }
    
    .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 20px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .faq-question:hover {
        background-color: #f8f9fa;
    }
    
    .faq-question-text {
        flex: 1;
        text-align: left;
    }
    
    .faq-toggle-icon {
        width: 20px;
        height: 20px;
        transition: transform 0.3s ease;
    }
    
    .faq-item.expanded .faq-toggle-icon {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        padding: 0 25px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-answer-content {
        padding: 20px 0;
        color: #555;
        line-height: 1.6;
    }
    
    .faq-answer-content p {
        margin-bottom: 1em;
    }
    
    .faq-answer-content p:last-child {
        margin-bottom: 0;
    }
    
    /* Стиль Simple */
    .faq-style-simple .faq-question {
        background: #f8f9fa;
        border-radius: 5px;
    }
    
    /* Стиль Bordered */
    .faq-style-bordered .faq-item {
        border: 1px solid #dee2e6;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .faq-style-bordered .faq-question {
        border-bottom: 1px solid #dee2e6;
    }
    
    .faq-style-bordered .faq-item.expanded .faq-question {
        border-bottom-color: transparent;
    }
    
    /* Стиль Shadow */
    .faq-style-shadow .faq-item {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }
    
    .faq-style-shadow .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }
    
    /* Стиль Gradient */
    .faq-style-gradient .faq-question {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .faq-style-gradient .faq-question:hover {
        background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    }
    
    /* Адаптивность */
    @media (max-width: 768px) {
        .faq-block {
            padding: 40px 0;
        }
        
        .faq-title {
            font-size: 2rem;
        }
        
        .faq-question {
            padding: 15px 20px;
            font-size: 1rem;
        }
        
        .faq-controls {
            flex-direction: column;
            align-items: center;
        }
        
        .faq-toggle-all {
            width: 100%;
            max-width: 300px;
        }
    }