        /* ===== ГЛАВНЫЙ БЛОК FAQ ===== */
        .faq {
            max-width: 1200px;
            width: 100%;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(45, 59, 108, 0.10);
            padding: 36px 32px 28px;
            transition: padding 0.2s ease;
            border: 1px solid rgba(45, 59, 108, 0.06);
        }

        /* ===== ЗАГОЛОВОК БЛОКА ===== */
        .faq-title {
            font-size: 28px;
            color: #2D3B6C; /* основной цвет */
            margin-bottom: 28px;
            letter-spacing: -0.4px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid rgba(45, 59, 108, 0.08);
            padding-bottom: 16px;
        }

        .faq-title span {
            color: #E48900; /* акцентный цвет */
        }

        .faq-title small {
            font-size: 16px;
            font-weight: 400;
            color: #6b7a9a;
            margin-left: auto;
            letter-spacing: 0;
        }

        /* ===== КАЖДЫЙ ВОПРОС ===== */
        .faq details {
            display: block;
            margin-bottom: 12px;
            border-radius: 16px;
            background: #fafbff;
            border: 1px solid #e6ebf5;
            transition: all 0.25s ease;
            overflow: hidden;
        }

        .faq details:last-child {
            margin-bottom: 0;
        }

        .faq details:hover {
            border-color: #c8d3e8;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(45, 59, 108, 0.06);
        }

        /* ===== SUMMARY (ВОПРОС) ===== */
        .faq summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            font-size: 17px;
            font-weight: 600;
            color: #1e2a4a;
            cursor: pointer;
            list-style: none;
            user-select: none;
            gap: 16px;
            transition: color 0.2s ease;
        }

        .faq summary::-webkit-details-marker,
        .faq summary::marker {
            display: none;
        }

        /* ===== ИКОНКА (круг с плюсом) ===== */
        .faq summary::after {
            content: "+";
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 300;
            color: #E48900; /* акцент */
            background: rgba(228, 137, 0, 0.10);
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            line-height: 1;
            border: 1px solid rgba(228, 137, 0, 0.15);
        }

        .faq details[open] summary::after {
            content: "−";
            background: #E48900;
            color: #ffffff;
            border-color: #E48900;
            transform: rotate(0deg);
        }

        /* ===== ОТВЕТ ===== */
        .faq details p {
            padding: 0 24px 22px 24px;
            margin: 0;
            font-size: 16px;
            line-height: 1.7;
            color: #3d4b6a;
            border-top: 1px solid #eef2f9;
            padding-top: 18px;
            animation: fadeSlide 0.3s ease;
        }

        @keyframes fadeSlide {
            0% {
                opacity: 0;
                transform: translateY(-4px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== АДАПТИВНОСТЬ (320px и выше) ===== */

        /* Планшеты и маленькие ноутбуки */
        @media (max-width: 600px) {
            .faq {
                padding: 24px 18px 20px;
                border-radius: 20px;
            }

            .faq-title {
                font-size: 22px;
                flex-wrap: wrap;
                gap: 8px;
                padding-bottom: 12px;
                margin-bottom: 20px;
            }

            .faq-title small {
                font-size: 14px;
                margin-left: 0;
                width: 100%;
            }

            .faq summary {
                padding: 14px 18px;
                font-size: 16px;
                gap: 12px;
            }

            .faq summary::after {
                width: 30px;
                height: 30px;
                font-size: 22px;
            }

            .faq details p {
                padding: 0 18px 18px 18px;
                font-size: 15px;
                padding-top: 14px;
            }
        }

        /* Специально для 320px */
        @media (max-width: 400px) {
            .faq {
                padding: 16px 12px 14px;
                border-radius: 16px;
            }

            .faq-title {
                font-size: 19px;
                margin-bottom: 16px;
                padding-bottom: 10px;
            }

            .faq-title small {
                font-size: 12px;
            }

            .faq summary {
                padding: 12px 14px;
                font-size: 14px;
                gap: 10px;
            }

            .faq summary::after {
                width: 26px;
                height: 26px;
                font-size: 19px;
                flex-shrink: 0;
            }

            .faq details p {
                padding: 0 14px 14px 14px;
                font-size: 13px;
                line-height: 1.5;
                padding-top: 12px;
            }

            .faq details {
                border-radius: 12px;
                margin-bottom: 8px;
            }
        }

        /* ===== ДОПОЛНИТЕЛЬНЫЕ ЭЛЕМЕНТЫ ДЛЯ УЛУЧШЕНИЯ ===== */

        /* Легкая подсветка вопроса при наведении */
        .faq summary:hover {
            color: #2D3B6C;
        }

        .faq details[open] summary {
            color: #2D3B6C;
        }

        /* Фокус для клавиатуры */
        .faq summary:focus-visible {
            outline: 2px solid #E48900;
            outline-offset: 2px;
            border-radius: 12px;
        }