.faq-accordion {
            
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #B7A78C;
        }
        
        .faq-question {
            background-color: #f9f9f9;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        
        .faq-question:hover {
            background-color: #f5f5f5;
        }
        
        .faq-question.active {
            background-color: #fff;
            border-bottom-color: #B02334;
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #333333;
            flex: 1;
            padding-right: 20px;
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        .faq-icon:before,
        .faq-icon:after {
            content: '';
            position: absolute;
            background-color: #B02334;
            transition: all 0.3s ease;
        }
        
        .faq-icon:before {
            width: 16px;
            height: 2px;
            top: 11px;
            left: 4px;
        }
        
        .faq-icon:after {
            width: 2px;
            height: 16px;
            top: 4px;
            left: 11px;
        }
        
        .faq-question.active .faq-icon:after {
            transform: rotate(90deg);
            opacity: 0;
        }
        
        .faq-question.active .faq-icon:before {
            background-color: #B02334;
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: #fff;
        }
        
        .faq-answer.open {
            padding: 25px;
            max-height: 1000px;
        }
        
        .faq-answer-content {
            color: #555;
            line-height: 1.6;
            font-size: 16px;
        }
        
        .faq-answer-content p {
            margin: 0 0 15px 0;
        }
        
        .faq-answer-content p:last-child {
            margin-bottom: 0;
        }
        
        /* Цветовые акценты */
        .faq-count {
            display: inline-block;
            background-color: #B7A78C;
            color: white;
            font-size: 14px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 12px;
            margin-right: 10px;
            min-width: 30px;
            text-align: center;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .faq-header h2 {
            color: #333333;
            font-size: 32px;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .faq-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #B02334;
        }
        
        .faq-header p {
            color: #666;
            font-size: 18px;
            margin-top: 20px;
        }
        
        /* Анимация для плавного раскрытия */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-answer.open .faq-answer-content {
            animation: fadeIn 0.3s ease;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .faq-question {
                padding: 16px 20px;
            }
            
            .faq-question h3 {
                font-size: 16px;
            }
            
            .faq-answer.open {
                padding: 20px;
            }
            
            .faq-header h2 {
                font-size: 26px;
            }
        }
