    /* Префикс 't-' для всех классов чтобы избежать конфликтов с Tilda */
    .t-custom-header {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 1200px;
        z-index: 10000;
        padding: 15px 20px;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
    
    .t-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .t-nav-wrapper {
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .t-custom-header.scrolled {
        padding: 10px 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        top: 0;
    }
    
    .t-logo {
        font-size: 35px;
        font-weight: 700;
        color: #1a1a1a !important;
        padding: 8px 0;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        white-space: nowrap;
        
    }
    
    .t-logo span {
        color: #4e7fff;
    }
    
    .t-nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }
    
    .t-nav-item {
        margin-left: 28px;
        position: relative;
        white-space: nowrap;
        color: #1a1a1a;
        
    }
    
    .t-nav-item a {
        font-weight: 500;
        font-size: 16px;
        transition: all 0.2s;
        padding: 12px 0;
        display: inline-block;
        color: #3F2AFB;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        position: relative;
        color: #1a1a1a !important;
    }
    
    .t-nav-item a:hover {
        color: #3F2AFB !important;
    }
    
    .t-nav-item a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #3F2AFB;
        transition: width 0.3s ease;
    }
    
    .t-nav-item a:hover::after {
        width: 100%;
        color: #1a1a1a !important;
    }
    
    .t-btn {
        display: inline-block;
        padding: 10px 22px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        overflow: hidden;
        text-align: center;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        border: none;
        margin-left: 20px;
        white-space: nowrap;
        color: #ffffff !important;
    }
    
    .t-btn-primary {
        background-color: #4e7fff;
        color: #ffffff;
        border: 2px solid #4e7fff;
    }
    
    .t-btn-primary:hover {
        background-color: #3a6bff;
        border-color: #3a6bff;
        transform: translateY(-1px);
    }
    
    .t-btn-primary:active {
        background-color: #B8FF0D !important;
        border-color: #B8FF0D !important;
        color: #1a1a1a !important;
    }
    
    /* Создаем пространство для шапки в основном контенте */
    body:not([class*="t-body-"]) {
        padding-top: 100px;
    }
    
    /* Кнопка мобильного меню */
    .t-mobile-menu-toggle {
        display: none;
        background: none;
        border: none;
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
    }
    
    .t-mobile-menu-toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #1a1a1a;
        border-radius: 3px;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .t-mobile-menu-toggle span:nth-child(1) {
        top: 0;
    }
    
    .t-mobile-menu-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .t-mobile-menu-toggle span:nth-child(3) {
        bottom: 0;
    }
    
    .t-mobile-menu-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .t-mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .t-mobile-menu-toggle.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    /* Адаптация для планшетов */
    @media (max-width: 992px) {
        .t-custom-header {
            padding: 15px;
        }
        
        .t-nav-item {
            margin-left: 15px;
        }
        
        .t-btn {
            margin-left: 15px;
            padding: 8px 16px;
        }
    }
    
    /* Адаптация для мобильных устройств */
    @media (max-width: 768px) {
        .t-custom-header {
            width: calc(100% - 20px);
            padding: 12px 15px;
            top: 5px;
        }
        
        .t-nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
        }
        
        .t-nav-wrapper.active {
            opacity: 1;
            visibility: visible;
        }
        
        .t-nav-list {
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .t-nav-item {
            margin: 15px 0;
        }
        
        .t-nav-item a {
            font-size: 18px;
            padding: 10px 0;
        }
        
        .t-btn {
            margin-left: 0;
            width: 200px;
            max-width: 80%;
            font-size: 16px;
            padding: 12px 24px;
        }
        
        .t-mobile-menu-toggle {
            display: block;
        }
        
        body:not([class*="t-body-"]) {
            padding-top: 70px;
        }
        
        .t-logo {
            font-size: 28px;
            position: relative;
            z-index: 10001;
        }
    }
    
    /* Еще более мелкие экраны */
    @media (max-width: 480px) {
        .t-logo {
            font-size: 24px;
        }
        
        .t-nav-item a {
            font-size: 16px;
        }
        
        .t-btn {
            font-size: 15px;
        }
    }
    
/* Основные стили футера */
    .t-custom-footer {
        background-color: #ffffff;
        color: #1a1a1a;
        padding: 60px 0 30px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .t-footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: #1a1a1a;
        
    }
    
    .t-footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .t-footer-column {
        display: flex;
        flex-direction: column;
        color: #1a1a1a;
    }
    
    .t-footer-logo {
        font-size: 35px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
        line-height: 1;
    }
    
    .t-footer-logo2 {
        font-size: 35px;
        font-weight: 700;
        color: #1a1a1a !important;
        margin-bottom: 20px;
        line-height: 1;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        white-space: nowrap;
        
    }
    
    .t-footer-logo span {
        color: #4e7fff;
    }
    
    .t-footer-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #1a1a1a;
    }
    
    .t-footer-list {
        list-style: none;
        margin: 0;
        padding: 0;
        color: #1a1a1a;
    }
    
    .t-footer-list li {
        margin-bottom: 12px;
        color: #1a1a1a;
    }
    
    .t-footer-list a,
    .t-social-link,
    .t-footer-links a {
        color: #1a1a1a;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: all 0.2s ease;
        position: relative;
    }
    
    .t-footer-list a:hover,
    .t-social-link:hover,
    .t-footer-links a:hover {
        color: #4e7fff;
        text-decoration: underline;
    }
    
    .t-footer-social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
        color: #1a1a1a;
    }
    
    .t-footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid #eaeaea;
    }
    
    .t-footer-copyright {
        font-size: 14px;
        color: #666;
    }
    
    .t-footer-links {
        display: flex;
        gap: 20px;
    }
    
    .t-footer-links a {
        font-size: 14px;
    }
    
    
    /* Адаптация для планшетов */
    @media (max-width: 992px) {
        .t-footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 30px;
        }
        
        .t-footer-bottom {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
    }
    
    /* Адаптация для мобильных устройств */
    @media (max-width: 768px) {
        .t-custom-footer {
            padding: 40px 0 25px;
        }
        
        .t-footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .t-footer-column {
            align-items: center;
            text-align: center;
        }
        
        .t-footer-social {
            justify-content: center;
        }
        
        .t-footer-links {
            flex-direction: column;
            gap: 10px;
        }
    }    

