        :root {
            --slidepoint-primary: #4a6baf;
            --slidepoint-secondary: #64b5f6;
            --slidepoint-accent: #ff7043;
            --slidepoint-dark: #2c3e50;
            --slidepoint-light: #f7f9fc;
            --slidepoint-border: #e1e8ed;
            --slidepoint-text: #333740;
            --slidepoint-muted: #7f8c8d;
        }
        .code-block {
    white-space: pre;
    line-height: 1.5;
}
        .content__inside__main__right {
            overflow: hidden;
        }

        .slidepoint-container {
            max-width: 984px;
            margin: 0 auto;
            padding: 30px 20px;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }

        .slidepoint-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .slidepoint-title {
            font-size: 32px;
            color: var(--slidepoint-dark);
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
        }

        .slidepoint-subtitle {
            font-size: 18px;
            color: var(--slidepoint-muted);
            margin-bottom: 10px;
            font-weight: 400;
        }

        .slidepoint-paragraph {
            margin-bottom: 20px;
            font-size: 16px;
            color: var(--slidepoint-text);
        }

        .slidepoint-heading-1 {
            font-size: 28px;
            margin: 40px 0 20px;
            color: var(--slidepoint-dark);
            position: relative;
            padding-bottom: 10px;
        }

        .slidepoint-heading-1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(
                90deg,
                var(--slidepoint-primary),
                var(--slidepoint-secondary)
            );
        }

        .slidepoint-heading-2 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: var(--slidepoint-dark);
        }

        .slidepoint-heading-3 {
            font-size: 18px;
            margin: 25px 0 15px;
            color: var(--slidepoint-dark);
        }

        .slidepoint-bold {
            font-weight: 700;
            color: var(--slidepoint-dark);
        }
        .slidepoint-ordered-list {
            margin: 20px 0 20px 25px;
        }

        .slidepoint-unordered-list {
            margin: 20px 0 20px 25px;
            list-style-type: none;
            padding: 0;
        }

        .slidepoint-list-item {
            margin-bottom: 10px;
            position: relative;
        }

        .slidepoint-ordered-list .slidepoint-list-item {
            padding-left: 10px;
        }

        .slidepoint-unordered-list .slidepoint-list-item {
            padding-left: 25px;
        }

        .slidepoint-unordered-list .slidepoint-list-item::before {
            content: "•";
            color: var(--slidepoint-primary);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 20px;
        }

        .slidepoint-image-container {
            margin: 30px 0;
            text-align: center;
        }

        .slidepoint-image {
            max-width: 100%;
            border-radius: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .slidepoint-image-caption {
            font-size: 14px;
            color: var(--slidepoint-muted);
            text-align: center;
            margin-top: 10px;
            font-style: italic;
        }

        .slidepoint-info-box {
            background-color: #e8f4fd;
            border-left: 4px solid var(--slidepoint-secondary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .slidepoint-info-box-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--slidepoint-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .slidepoint-info-box-icon {
            margin-right: 10px;
            font-size: 20px;
            color: var(--slidepoint-secondary);
        }

        .slidepoint-expert-box {
            background-color: #f5f7fc;
            border: 1px solid var(--slidepoint-border);
            border-radius: 6px;
            padding: 20px;
            margin: 30px 0;
            position: relative;
        }

        .slidepoint-expert-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .slidepoint-expert-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--slidepoint-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
        }

        .slidepoint-expert-info {
            flex: 1;
        }

        .slidepoint-expert-name {
            font-weight: 600;
            color: var(--slidepoint-dark);
            font-size: 16px;
        }

        .slidepoint-expert-position {
            font-size: 14px;
            color: var(--slidepoint-muted);
        }

        .slidepoint-expert-content {
            position: relative;
            padding-left: 20px;
            border-left: 2px solid var(--slidepoint-border);
            font-style: italic;
            color: #555;
        }

        .slidepoint-table-container {
            margin: 30px 0;
            overflow-x: auto;
            max-width: 85svw;
        }

        .slidepoint-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .slidepoint-table-header {
            background-color: var(--slidepoint-primary);
            color: white;
        }

        .slidepoint-table-header-cell {
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
        }

        .slidepoint-table-row:nth-child(even) {
            background-color: #f8f9fa;
        }

        .slidepoint-table-row:hover {
            background-color: #f1f4f9;
        }

        .slidepoint-table-cell {
            padding: 12px 15px;
            border-bottom: 1px solid var(--slidepoint-border);
        }

        .slidepoint-data-block {
            background: linear-gradient(135deg, #f6f9fe 0%, #edf4ff 100%);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }

        .slidepoint-data-block-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--slidepoint-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .slidepoint-data-chart {
            margin: 20px 0;
            position: relative;
            height: 40px;
            background-color: #eaeff5;
            border-radius: 20px;
            overflow: hidden;
        }

        .slidepoint-data-bar {
            position: absolute;
            height: 100%;
            background: linear-gradient(
                90deg,
                var(--slidepoint-primary),
                var(--slidepoint-secondary)
            );
            border-radius: 20px;
            left: 0;
            top: 0;
        }

        .slidepoint-data-label {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--slidepoint-dark);
            font-weight: 600;
            font-size: 14px;
        }

        .slidepoint-alert-box {
            background-color: #fff3e6;
            border-left: 4px solid var(--slidepoint-accent);
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .slidepoint-alert-title {
            color: #e67e22;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .slidepoint-alert-icon {
            margin-right: 10px;
            font-size: 20px;
            color: var(--slidepoint-accent);
        }

        .slidepoint-comparison-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .slidepoint-comparison-column {
            flex: 1;
            min-width: 250px;
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-top: 3px solid var(--slidepoint-primary);
        }

        .slidepoint-column-traditional {
            border-top-color: #e74c3c;
        }

        .slidepoint-column-ai {
            border-top-color: #2ecc71;
        }

        .slidepoint-comparison-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--slidepoint-dark);
            text-align: center;
        }

        .slidepoint-feature-list {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }

        .slidepoint-feature-item {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            border-bottom: 1px solid var(--slidepoint-border);
        }

        .slidepoint-feature-item:last-child {
            border-bottom: none;
        }

        .slidepoint-feature-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2ecc71;
        }

        .slidepoint-feature-negative::before {
            content: "✕";
            color: #e74c3c;
        }

        .slidepoint-ai-helper-box {
            background: linear-gradient(135deg, #e6f7ff 0%, #d0e8ff 100%);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #3498db;
        }

        .slidepoint-ai-helper-title {
            font-size: 20px;
            font-weight: 600;
            color: #2980b9;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .slidepoint-ai-helper-icon {
            margin-right: 10px;
            font-size: 24px;
            color: #3498db;
        }

        .slidepoint-tool-card {
            border: 1px solid var(--slidepoint-border);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .slidepoint-tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .slidepoint-tool-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .slidepoint-tool-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: var(--slidepoint-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 15px;
        }

        .slidepoint-tool-name {
            font-weight: 600;
            font-size: 18px;
            color: var(--slidepoint-dark);
        }

        .slidepoint-tool-description {
            margin-bottom: 15px;
            color: var(--slidepoint-text);
        }

        .slidepoint-tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            background-color: #edf2f7;
            color: var(--slidepoint-dark);
            margin-right: 8px;
            margin-bottom: 8px;
        }

        .slidepoint-tag-ai {
            background-color: #d6f5e3;
            color: #27ae60;
        }

        .slidepoint-tag-free {
            background-color: #e3f2fd;
            color: #2196f3;
        }

        .slidepoint-tag-paid {
            background-color: #fff8e1;
            color: #ffa000;
        }

        .slidepoint-workflow-steps {
            counter-reset: step;
            margin: 30px 0;
        }

        .slidepoint-workflow-step {
            position: relative;
            padding-left: 70px;
            margin-bottom: 30px;
            min-height: 60px;
        }

        .slidepoint-workflow-step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background-color: var(--slidepoint-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
        }

        .slidepoint-workflow-step::after {
            content: "";
            position: absolute;
            left: 25px;
            top: 50px;
            width: 2px;
            height: calc(100% - 20px);
            background-color: #e1e8ed;
            z-index: 0;
        }

        .slidepoint-workflow-step:last-child::after {
            display: none;
        }

        .slidepoint-workflow-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--slidepoint-dark);
            margin-bottom: 10px;
        }

        .slidepoint-workflow-content {
            color: var(--slidepoint-text);
        }

        @media (max-width: 768px) {
            .slidepoint-container {
                padding: 20px 15px;
            }

            .slidepoint-title {
                font-size: 28px;
            }

            .slidepoint-heading-1 {
                font-size: 24px;
            }

            .slidepoint-heading-2 {
                font-size: 20px;
            }

            .slidepoint-comparison-column {
                min-width: 100%;
            }

            .table-wrapper {
                overflow-x: auto; /* прокрутка по горизонтали */
                -webkit-overflow-scrolling: touch; /* для мобильных устройств плавная прокрутка */
            }
            /* Таблица растягивается, чтобы высвечивать все колонки */
            .slidepoint-table {
                display: inline-table; /* или block, если нужно, чтобы не ломало */
                min-width: 100%; /* обеспечит, что таблица не сжата */
            }
        }

        /* Дополнительные стили */
        .slidepoint-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--slidepoint-primary);
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 10px 0;
            text-align: center;
        }

        .slidepoint-button:hover {
            background-color: #3a5899;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .slidepoint-cta-box {
            background: linear-gradient(135deg, #6b8cce 0%, #4a6baf 100%);
            color: white;
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(74, 107, 175, 0.3);
        }

        .slidepoint-cta-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .slidepoint-cta-description {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .slidepoint-cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: white;
            color: var(--slidepoint-primary)!important;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .slidepoint-cta-button:hover {
            background-color: #f1f5ff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .slidepoint-steps-container {
            margin: 30px 0;
        }

        .slidepoint-step-item {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .slidepoint-step-number {
            min-width: 40px;
            height: 40px;
            background-color: var(--slidepoint-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 15px;
        }

        .slidepoint-step-content {
            flex: 1;
        }

        .slidepoint-step-title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--slidepoint-dark);
        }

        .slidepoint-step-description {
            color: var(--slidepoint-text);
        }

        .slidepoint-keyboard-shortcut {
            display: inline-block;
            padding: 3px 8px;
            background-color: #edf2f7;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            font-weight: 600;
            margin: 0 3px;
            border: 1px solid #dbe1ea;
        }

        /* Стили для кода */
        .code-block {
            background-color: #282c34;
            border-radius: 6px;
            padding: 20px;
            margin: 20px 0;
            overflow-x: auto;
            color: #abb2bf;
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.5;
        }

        .syntax-keyword {
            color: #c678dd;
        }

        .syntax-string {
            color: #98c379;
        }

        .syntax-comment {
            color: #7f848e;
            font-style: italic;
        }

        .syntax-number {
            color: #d19a66;
        }

        .syntax-function {
            color: #61afef;
        }

        .syntax-operator {
            color: #56b6c2;
        }

        .create-button {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .app-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            margin-right: 15px;
            align-items: center;
            display: flex;
            justify-content: space-around;
            padding: 5px;
            font-weight: 600;
        }
        
        .app-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .app-info h4 {
            margin: 0 0 5px 0;
            font-weight: 600;
            color: var(--slidepoint-dark);
        }
        
        .app-info p {
            margin: 0;
            color: var(--slidepoint-muted);
            font-size: 14px;
        }
        
        .platform-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-right: 5px;
            font-weight: 500;
        }
        
        .ios-badge {
            background-color: #f0f0f0;
            color: #333;
        }
        
        .android-badge {
            background-color: #d6f5d6;
            color: #2e7d32;
        }
        
        .cross-badge {
            background-color: #e3f2fd;
            color: #1565c0;
        }
        
        .step-container {
            display: flex;
            margin-bottom: 25px;
        }
        
        .step-number {
            flex: 0 0 50px;
            height: 50px;
            background-color: var(--slidepoint-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 20px;
            margin-right: 20px;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-content h4 {
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--slidepoint-dark);
            font-weight: 600;
        }
        
        .device-icon {
            font-size: 24px;
            margin-right: 10px;
            color: var(--slidepoint-primary);
            vertical-align: middle;
        }
        
        .tip-box {
            background-color: #f0f9ff;
            border-left: 4px solid #0ea5e9;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }
        
        .tip-box h4 {
            margin-top: 0;
            margin-bottom: 10px;
            color: #0369a1;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .tip-icon {
            margin-right: 8px;
            color: #0ea5e9;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 24px;
            color: var(--slidepoint-primary);
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--slidepoint-dark);
        }
        
        .slidepoint-tabs {
            margin: 30px 0;
        }
        
        .slidepoint-tab-header {
            display: flex;
            border-bottom: 1px solid var(--slidepoint-border);
            margin-bottom: 20px;
        }
        
        .slidepoint-tab {
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .slidepoint-tab.active {
            border-bottom-color: var(--slidepoint-primary);
            color: var(--slidepoint-primary);
        }
        
        .slidepoint-tab-content {
            display: none;
        }
        
        .slidepoint-tab-content.active {
            display: block;
        }
        .create-button {
            display: flex;
            align-items: center;
            justify-content: center;
        }
