        /* Стили компонента с изоляцией через префикс класса */
        .basic-tariffs {
            --bt-primary-color: #2c3e50;
            --bt-secondary-color: #3498db;
            --bt-accent-color: #e74c3c;
            --bt-light-gray: #f8f9fa;
            --bt-border-color: #dee2e6;
            --bt-text-color: #333;
            --bt-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --bt-header-bg: linear-gradient(135deg, var(--bt-primary-color), var(--bt-secondary-color));
            --bt-row-hover: #f8f9fa;
            
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--bt-text-color);
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        /* Сброс стилей только для элементов внутри компонента */
        .basic-tariffs * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .basic-tariffs .bt-container {
            width: 100%;
        }

        .basic-tariffs .bt-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 10px;
        }

        .basic-tariffs .bt-header h2 {
            color: var(--bt-primary-color);
            font-size: 2.2rem;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .basic-tariffs .bt-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--bt-secondary-color);
            border-radius: 2px;
        }

        .basic-tariffs .bt-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 15px auto 0;
        }

        /* Десктопная версия таблицы */
        .basic-tariffs .bt-table-desktop {
            width: 100%;
            border-collapse: collapse;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--bt-shadow);
            background: white;
        }

        .basic-tariffs .bt-table-desktop thead {
            background: var(--bt-header-bg);
            color: white;
        }

        .basic-tariffs .bt-table-desktop th {
            padding: 18px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }

        .basic-tariffs .bt-table-desktop th:last-child {
            border-right: none;
        }

        .basic-tariffs .bt-table-desktop tbody tr {
            border-bottom: 1px solid var(--bt-border-color);
            transition: background-color 0.2s ease;
        }

        .basic-tariffs .bt-table-desktop tbody tr:hover {
            background-color: var(--bt-row-hover);
        }

        .basic-tariffs .bt-table-desktop tbody tr:last-child {
            border-bottom: none;
        }

        .basic-tariffs .bt-table-desktop td {
            padding: 16px 15px;
            vertical-align: top;
            border-right: 1px solid var(--bt-border-color);
        }

        .basic-tariffs .bt-table-desktop td:last-child {
            border-right: none;
        }

        .basic-tariffs .bt-license-name {
            font-weight: 600;
            color: var(--bt-primary-color);
            font-size: 1.1rem;
        }

        .basic-tariffs .bt-price {
            font-weight: 700;
            color: var(--bt-primary-color);
            font-size: 1.2rem;
            white-space: nowrap;
        }

        .basic-tariffs .bt-price.highlight {
            color: var(--bt-accent-color);
            position: relative;
        }

        .basic-tariffs .bt-price.highlight::after {
            content: '★';
            color: #ffd700;
            margin-left: 5px;
            font-size: 0.9rem;
        }

        .basic-tariffs .bt-unavailable {
            color: #95a5a6 !important;
            text-decoration: line-through;
        }

        .basic-tariffs .bt-description {
            color: #555;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* Мобильная версия (карточки) */
        .basic-tariffs .bt-table-mobile {
            display: none;
        }

        .basic-tariffs .bt-mobile-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--bt-shadow);
            margin-bottom: 15px;
            border: 1px solid var(--bt-border-color);
            transition: transform 0.2s ease;
        }

        .basic-tariffs .bt-mobile-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .basic-tariffs .bt-mobile-header {
            background: var(--bt-header-bg);
            color: white;
            padding: 15px;
            font-weight: 600;
            font-size: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .basic-tariffs .bt-mobile-header .bt-license-name {
            color: white;
            font-size: 1.3rem;
        }

        .basic-tariffs .bt-mobile-content {
            padding: 20px;
        }

        .basic-tariffs .bt-mobile-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px dashed var(--bt-border-color);
        }

        .basic-tariffs .bt-mobile-row:last-child {
            border-bottom: none;
        }

        .basic-tariffs .bt-mobile-label {
            font-weight: 600;
            color: var(--bt-primary-color);
            flex: 0 0 40%;
            padding-right: 10px;
            font-size: 0.95rem;
        }

        .basic-tariffs .bt-mobile-value {
            flex: 1;
            text-align: right;
        }

        .basic-tariffs .bt-footer-note {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            padding: 20px;
            margin-top: 30px;
            border-top: 1px solid var(--bt-border-color);
            background: var(--bt-light-gray);
            border-radius: 8px;
        }

        /* Адаптивные стили */
        @media (max-width: 1024px) {
            .basic-tariffs {
                padding: 15px;
            }
            
            .basic-tariffs .bt-table-desktop th,
            .basic-tariffs .bt-table-desktop td {
                padding: 14px 12px;
                font-size: 0.95rem;
            }
            
            .basic-tariffs .bt-license-name {
                font-size: 1rem;
            }
            
            .basic-tariffs .bt-price {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            /* Скрываем десктопную таблицу, показываем мобильные карточки */
            .basic-tariffs .bt-table-desktop {
                display: none;
            }
            
            .basic-tariffs .bt-table-mobile {
                display: block;
            }
            
            .basic-tariffs .bt-header h2 {
                font-size: 1.8rem;
            }
            
            .basic-tariffs .bt-header p {
                font-size: 1rem;
            }
            
            .basic-tariffs .bt-mobile-header {
                padding: 12px 15px;
            }
            
            .basic-tariffs .bt-mobile-content {
                padding: 15px;
            }
            
            .basic-tariffs .bt-mobile-row {
                padding: 10px 0;
                flex-direction: column;
            }
            
            .basic-tariffs .bt-mobile-label {
                flex: none;
                width: 100%;
                margin-bottom: 5px;
                padding-right: 0;
                font-size: 0.9rem;
                color: #666;
            }
            
            .basic-tariffs .bt-mobile-value {
                text-align: left;
                width: 100%;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .basic-tariffs {
                padding: 10px;
            }
            
            .basic-tariffs .bt-header h2 {
                font-size: 1.6rem;
            }
            
            .basic-tariffs .bt-mobile-header .bt-license-name {
                font-size: 1.1rem;
            }
            
            .basic-tariffs .bt-mobile-content {
                padding: 12px;
            }
        }

        /* Анимации */
        @keyframes bt-fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .basic-tariffs .bt-table-desktop tbody tr,
        .basic-tariffs .bt-mobile-card {
            animation: bt-fadeIn 0.3s ease-out forwards;
            opacity: 0;
        }

        .basic-tariffs .bt-table-desktop tbody tr:nth-child(1) { animation-delay: 0.05s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(2) { animation-delay: 0.1s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(3) { animation-delay: 0.15s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(4) { animation-delay: 0.2s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(5) { animation-delay: 0.25s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(6) { animation-delay: 0.3s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(7) { animation-delay: 0.35s; }
        .basic-tariffs .bt-table-desktop tbody tr:nth-child(8) { animation-delay: 0.4s; }

        .basic-tariffs .bt-mobile-card:nth-child(1) { animation-delay: 0.05s; }
        .basic-tariffs .bt-mobile-card:nth-child(2) { animation-delay: 0.1s; }
        .basic-tariffs .bt-mobile-card:nth-child(3) { animation-delay: 0.15s; }
        .basic-tariffs .bt-mobile-card:nth-child(4) { animation-delay: 0.2s; }
        .basic-tariffs .bt-mobile-card:nth-child(5) { animation-delay: 0.25s; }
        .basic-tariffs .bt-mobile-card:nth-child(6) { animation-delay: 0.3s; }
        .basic-tariffs .bt-mobile-card:nth-child(7) { animation-delay: 0.35s; }
        .basic-tariffs .bt-mobile-card:nth-child(8) { animation-delay: 0.4s; }

    /*secont block 3 cols*/

    /* Стили для блока дополнительных услуг */
    .basic-tariffs .bt-addon-section {
        margin-top: 50px;
        padding-top: 30px;
        border-top: 2px solid var(--bt-border-color);
    }

    .basic-tariffs .bt-addon-section .bt-header h3 {
        font-size: 1.8rem;
        color: var(--bt-primary-color);
        margin-bottom: 10px;
        text-align: center;
    }

    .basic-tariffs .bt-addon-section .bt-header p {
        text-align: center;
        margin-bottom: 25px;
    }

    /* Специфичные настройки для таблицы с 3 колонками */
    .basic-tariffs .bt-addon-section .bt-table-desktop th:nth-child(1),
    .basic-tariffs .bt-addon-section .bt-table-desktop td:nth-child(1) {
        width: 25%;
    }

    .basic-tariffs .bt-addon-section .bt-table-desktop th:nth-child(2),
    .basic-tariffs .bt-addon-section .bt-table-desktop td:nth-child(2) {
        width: 50%;
    }

    .basic-tariffs .bt-addon-section .bt-table-desktop th:nth-child(3),
    .basic-tariffs .bt-addon-section .bt-table-desktop td:nth-child(3) {
        width: 25%;
        text-align: right;
    }

    /* Анимации для новых строк */
    .basic-tariffs .bt-addon-section .bt-table-desktop tbody tr,
    .basic-tariffs .bt-addon-section .bt-mobile-card {
        animation: bt-fadeIn 0.3s ease-out forwards;
        opacity: 0;
    }

    .basic-tariffs .bt-addon-section .bt-table-desktop tbody tr:nth-child(1) { animation-delay: 0.1s; }
    .basic-tariffs .bt-addon-section .bt-table-desktop tbody tr:nth-child(2) { animation-delay: 0.2s; }
    .basic-tariffs .bt-addon-section .bt-table-desktop tbody tr:nth-child(3) { animation-delay: 0.3s; }

    .basic-tariffs .bt-addon-section .bt-mobile-card:nth-child(1) { animation-delay: 0.1s; }
    .basic-tariffs .bt-addon-section .bt-mobile-card:nth-child(2) { animation-delay: 0.2s; }
    .basic-tariffs .bt-addon-section .bt-mobile-card:nth-child(3) { animation-delay: 0.3s; }    

