:root {
            --tarif-primary: #54f0ff;
            --tarif-secondary: #c26af5;
            --tarif-dark: #1a1a2e;
            --tarif-light: #f8f9fa;
            --tarif-gray: #6c757d;
            --tarif-success: #28a745;
            --tarif-danger: #dc3545;
        }
        
        .tarif-container {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .tarif-body {
            background-color: #f5f7fa;
            color: var(--tarif-dark);
            padding: 2rem;
        }
        
        .tarif-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 48px;
        }
        
        .tarif-title {
            text-align: center;
            margin-bottom: 5rem; 
            font-size: 3rem; /* Увеличенный шрифт */
            color: var(--tarif-dark);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            padding-top: 0rem;
        }
        
        
        .tarif-plans-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .tarif-plan {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            width: 280px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 2rem; /* Увеличенный базовый шрифт */
            border: 1px solid #54f0ff;
        }
        
        .tarif-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .tarif-plan.popular::before {
            content: 'Выгодный';
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--tarif-secondary);
            color: rgb(255, 255, 255);
            padding: 0.25rem 2rem;
            font-size: 0.9rem;
            font-weight: bold;
            transform: rotate(45deg);
            width: 120px;
            text-align: center;
        }
        
        .tarif-plan.premium {
            border: 3px solid var(--tarif-secondary);
            box-shadow: 0 5px 5px rgba(194, 106, 245, 0.3);
        }
        
        .tarif-plan.premium .tarif-plan-name {
            color: var(--tarif-secondary);
            font-size: 2.5rem;
        }
        
        .tarif-plan.premium .tarif-plan-price {
            font-size: 3rem;
        }
        
        .tarif-plan-header {
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .tarif-plan-name {
            font-size: 2rem; /* Увеличенный шрифт */
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--tarif-dark);
            padding-top: 3rem;
        }
        
        .tarif-plan-price {
            font-size: 4rem; /* Увеличенный шрифт */
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--tarif-primary), var(--tarif-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .tarif-plan-period {
            color: var(--tarif-gray);
            font-size: 1.1rem; /* Увеличенный шрифт */
        }
        
        .tarif-plan-features {
            margin: 3rem 0;
        }
        
        .tarif-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem; /* отступ между текстом*/
            font-size: 1.5rem; /* Увеличенный шрифт */
        }
        
        .tarif-feature::before {
            content: '✓';
            display: inline-block;
            color: var(--tarif-success);
            font-weight: bold;
            margin-right: 1.1rem;
            font-size: 1.1rem;
        }
        
        .tarif-feature.cross::before {
            content: '✕';
            color: var(--tarif-danger);
        }
        
        .tarif-plan-button {
            display: block;
            width: 100%;
            padding: 0.9rem;
            border: none;
            border-radius: 6px;
            background: linear-gradient(90deg, var(--tarif-primary), var(--tarif-secondary));
            color: white;
            font-weight: 600;
            font-size: 1.6rem; /* Увеличенный шрифт */
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }
        
        .tarif-plan-button:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(84, 240, 255, 0.4);
        }
        
        .tarif-plan-button.free {
            background: #e9ecef;
            color: var(--tarif-gray);
        }
        
        .tarif-plan-button.free:hover {
            box-shadow: none;
            transform: none;
            background: #dee2e6;
        }
        
        @media (max-width: 768px) {
            .tarif-plans-container {
                flex-direction: column;
                align-items: center;
            }
            
            .tarif-plan {
                width: 100%;
                max-width: 350px;
            }
        }

        .tarif-plan-button.outline {
    background: #fff;
    color: var(--tarif-gray);
    border: 2px solid var(--tarif-primary);
    font-weight: 600;
    font-size: 1.6rem;
    border-radius: 6px;
    padding: 0.9rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    }

    .tarif-plan-button.outline:hover {
        background: var(--tarif-primary);
    /*    color: #fff;*/
    }