 /* Стили для страницы FAQ */
        .faq-page {
            padding: 50px 20px;
        }
        
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 36px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .page-header h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #31c29f;
            background-image: linear-gradient(61.8deg, #31c29f, #4bcf6f);
        }
        
        .page-header .subtitle {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto 50px;
        }
        
        .faq-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .category-btn {
            padding: 12px 20px;
            background-color: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            color: #4a5568;
            transition: all 0.3s;
        }
        
        .category-btn:hover {
            background-color: #edf2f7;
        }
        
        .category-btn.active {
            background-color: #31c29f;
            background-image: linear-gradient(61.8deg, #31c29f, #4bcf6f);
            color: white;
            border-color: #4299e1;
        }
        
        .faq-category {
            display: none;
        }
        
        .faq-category.active {
            display: block;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: #f8fafc;
            cursor: pointer;
            font-weight: 500;
            font-size: 18px;
            color: #2d3748;
            position: relative;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .faq-question:hover {
            color: #31c29f;
        }
        
        .faq-question:after {
            content: '+';
            font-size: 22px;
            color: #4299e1;
        }
        
        .faq-question.active {
            color: #31c29f;
            background-color: #edf2f7;
        }
        
        .faq-question.active:after {
            content: '−';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 1000px;
        }
        
        .faq-answer p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #4a5568;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        .faq-answer ul, .faq-answer ol {
            margin-bottom: 15px;
            padding-left: 20px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
            line-height: 1.5;
            color: #4a5568;
        }
        
        .faq-cta {
            background-color: #31c29f;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin-top: 50px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .faq-cta h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #2d3748;
        }
        
        .faq-cta p {
            font-size: 16px;
            color: #4a5568;
            margin-bottom: 25px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .primary-btn {
            border:1px solid #FFF;
            color: #FFF;
        }
        .primary-btn:hover{
            color: #FFF;
        }
        
        .secondary-btn {
            background-color: white;
            color: #31c29f;
            border: 1px solid #31c29f;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 28px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 15px;
            }
            
            .category-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .faq-cta {
                padding: 30px 20px;
            }
        }