  .questions-page {
            padding: 40px 0 80px;
            background: #f0f6ff;
            font-family: 'Rubik', sans-serif;
            color: #333;
        }

        .questions-page .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .questions-page__breadcrumbs {
            display: flex;
            gap: 8px;
            align-items: unset;
            margin-bottom: 15px;
            font-size: 14px;
            color: #999;
        }

        .questions-page__breadcrumbs a {
            color: #80B3FF;
            text-decoration: none;
        }

        .questions-page__breadcrumbs a:hover {
            color: #4090ff;
        }

        .questions-page__breadcrumbs span {
            color: #ccc;
        }

        .questions-page__header {
            background: linear-gradient(135deg, #80B3FF 0%, #c0d8f0 100%);
            border-radius: 8px;
            padding: 20px 30px;
            margin-bottom: 30px;
            border: 2px solid #80B3FF;
        }

        .questions-page__header-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin: 0;
        }

        /* Контент-блок */
        .questions-page__content {
            background: #fff;
            border: 2px solid #80B3FF;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
        }

        .questions-page__image {
            margin: 30px 0 40px;
        }

        .questions-page__image img {
            max-width: 100%;
            height: auto;
        }

        /* Список вопросов */
        .questions-page__list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .questions-page__item {
            background: #e8f2ff;
            border: 1px solid #d0e4f7;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .questions-page__item:last-child {
            margin-bottom: 0;
        }

        .questions-page__item:hover {
            background: #d0e4f7;
        }

        .questions-page__link {
            display: block;
            padding: 16px 25px;
            color: #2a5298;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .questions-page__link:hover {
            color: #4090ff;
        }

        @media (max-width: 768px) {
            .questions-page__content {
                padding: 25px 20px;
            }

            .questions-page__header {
                padding: 15px 20px;
            }

            .questions-page__header-title {
                font-size: 20px;
            }

            .questions-page__link {
                font-size: 15px;
                padding: 14px 20px;
            }

            .questions-page__image img {
                max-width: 250px;
            }
        }

.question-page {
    padding: 60px 0 80px;
    background: #ffffff;
    font-family: 'Rubik', sans-serif;
    color: #333;
}

.question-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Хлебные крошки --- */
.question-page__breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: unset;
    margin-bottom: 30px;
    font-size: 14px;
    color: #999;
}

.question-page__breadcrumbs a {
    color: #80B3FF;
    text-decoration: none;
    transition: color 0.3s;
}

.question-page__breadcrumbs a:hover { color: #4090ff; }
.question-page__breadcrumbs span { color: #ccc; }

.question-page__header {
    background: linear-gradient(135deg, #e8f2ff 0%, #f0f6ff 100%);
    border-radius: 20px;
    padding: 50px 60px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.question-page__header::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: rgba(128, 179, 255, 0.15);
    border-radius: 50%;
}

.question-page__header-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.question-page__header-title span { color: #80B3FF; }

.question-page__header-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.question-page__header-text strong { color: #1a1a2e; }

/* --- Секции контента --- */
.question-page__section { margin-bottom: 50px; }

.question-page__section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #80B3FF;
    display: inline-block;
}

.question-page__section-title--sub {
    font-size: 22px;
    font-weight: 600;
    color: #80B3FF;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
    border-left: 4px solid #80B3FF;
    padding-left: 16px;
    display: block;
}

.question-page__text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.question-page__text strong { color: #1a1a2e; }

/* --- Списки --- */
.question-page__list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.question-page__list li {
    position: relative;
    padding: 12px 20px 12px 45px;
    margin-bottom: 12px;
    background: #f8fbff;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    border-left: 3px solid #80B3FF;
    transition: all 0.3s ease;
}

.question-page__list li:hover {
    background: #eef4ff;
    transform: translateX(4px);
}

.question-page__list li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #80B3FF;
    font-weight: 700;
    font-size: 16px;
}

.question-page__list li strong { color: #1a1a2e; }

/* Нумерованный список (для страницы "Как сменить специалиста") */
.question-page__ordered-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    counter-reset: custom-counter;
}

.question-page__ordered-list li {
    position: relative;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
    background: #f8fbff;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    counter-increment: custom-counter;
    border: 1px solid #e0ecff;
    transition: all 0.3s ease;
}

.question-page__ordered-list li:hover {
    background: #eef4ff;
    transform: translateX(4px);
}

.question-page__ordered-list li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #80B3FF, #4090ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(128, 179, 255, 0.3);
}

/* Подсписок (a, b, c, d) */
.question-page__sub-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.question-page__sub-list li {
    background: #fff;
    border: 1px solid #e0ecff;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.question-page__sub-list li::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 15px;
    font-weight: 700;
    color: #ff6b6b;
    font-size: 14px;
}

/* --- Блоки определений и инфо --- */
.question-page__definition {
    background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%);
    border-left: 4px solid #ff6b6b;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
}

.question-page__definition-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.question-page__definition-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.question-page__info-block {
    background: #f8fbff;
    border-radius: 16px;
    padding: 30px 35px;
    margin: 25px 0;
    border: 1px solid #e0ecff;
}

.question-page__info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 15px 0;
}

.question-page__info-block p:last-child { margin-bottom: 0; }

.question-page__info-block--result {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-left: 4px solid #38a169;
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
}

.question-page__info-block--result p {
    color: #2d3748;
    margin: 0;
}

.question-page__recommendations {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-radius: 16px;
    padding: 30px 35px;
    margin: 30px 0;
    border: 1px solid #9ae6b4;
}

.question-page__recommendations-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.question-page__recommendations-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.question-page__recommendations-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.question-page__recommendations-list li:last-child { margin-bottom: 0; }

/* --- Предупреждения --- */
.question-page__warning {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border-left: 4px solid #ed8936;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 25px 0;
}

.question-page__warning-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.question-page__warning-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* --- Медиа и примеры --- */
.question-page__example {
    background: #fff;
    border: 2px solid #e0ecff;
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

.question-page__example-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.question-page__example-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.question-page__image-block {
    margin: 30px 0;
    text-align: center;
}

.question-page__image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.question-page__screenshot {
    display: block;
    max-width: 100%;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.question-page__screenshot img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.question-page__video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #000;
}

.question-page__video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Заключение и кнопка --- */
.question-page__conclusion {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4a 100%);
    border-radius: 20px;
    padding: 40px 50px;
    margin-top: 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.question-page__conclusion::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(128, 179, 255, 0.15);
    border-radius: 50%;
}

.question-page__conclusion::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(128, 179, 255, 0.1);
    border-radius: 50%;
}

.question-page__conclusion-text {
    font-size: 17px;
    line-height: 1.8;
    color: #d0d8f0;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.question-page__conclusion-text a {
    color: #80B3FF;
    font-weight: 600;
    text-decoration: none;
}

.question-page__conclusion-text a:hover { text-decoration: underline; }

.question-page__conclusion-btn {
    display: inline-block;
    background: linear-gradient(135deg, #80B3FF, #4090ff);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Rubik', sans-serif;
}

.question-page__conclusion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 179, 255, 0.4);
}

/* ==================== АДАПТИВНОСТЬ ==================== */
@media (max-width: 768px) {
    .question-page { padding: 40px 0 60px; }
    .question-page__header { padding: 30px 25px; }
    .question-page__header-title { font-size: 26px; margin-bottom: 15px; }
    .question-page__section-title { font-size: 22px; }
    .question-page__section-title--sub { font-size: 18px; }
    .question-page__conclusion { padding: 30px 20px; }
    .question-page__sub-list { grid-template-columns: 1fr; }
    
    /* Компактная шапка для Минусинска */
    .question-page__header--compact { padding: 30px 25px; margin-bottom: 30px; }
    .question-page__header--compact .question-page__header-title { font-size: 24px; }
}