       :root {
            --primary: #4a2d8b;
            --secondary: #6a4da8;
            --accent: #ff6b00;
            --light: #f9f9ff;
            --dark: #333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f0f0ff;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Стили для раздела партнеров */
        .partners-section {
            background: linear-gradient(135deg, #f9f9ff 0%, #eaeaff 100%);
            padding: 40px 0 60px;
            border-top: 1px solid #dcdcff;
            border-bottom: 1px solid #dcdcff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .partners-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,10 100,0 L100,100 Q50,90 0,100 Z" fill="%234a2d8b" opacity="0.03"/></svg>');
            background-size: cover;
            z-index: 0;
        }
        
        .company-logo-container {
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .company-logo {
            max-height: 70px;
            width: auto;
            transition: all 0.3s ease;
        }
        
        .company-logo:hover {
            transform: scale(1.05);
        }
        
        .section-title {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            z-index: 2;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            border-radius: 2px;
        }
        
        .section-title i {
            margin-right: 15px;
            color: var(--secondary);
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .partner-card {
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(74, 45, 139, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid #f0f0ff;
        }
        
        .partner-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .partner-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(74, 45, 139, 0.2);
        }
        
        .partner-card:hover::before {
            transform: scaleX(1);
        }
        
        .partner-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 10px;
            width: 100%;
        }
        
        .partner-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.9;
            transition: all 0.4s ease;
        }
        
        .partner-card:hover .partner-logo img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        
        .partner-name {
            font-weight: 600;
            color: var(--dark);
            margin-top: auto;
            font-size: 1.05rem;
            line-height: 1.4;
            position: relative;
            z-index: 2;
            background: white;
            padding: 5px 10px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        /* Стили для футера */
        .footer {
            background: linear-gradient(135deg, var(--primary) 0%, #3a1d6b 100%);
            color: rgba(255,255,255,0.9);
            padding: 50px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
        }
        
        .footer-disclaimer {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.92rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }
        
        .footer-disclaimer p {
            margin-bottom: 20px;
        }
        
        .footer-disclaimer a {
            color: #d0b3ff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-disclaimer a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: white;
            transition: width 0.3s ease;
        }
        
        .footer-disclaimer a:hover {
            color: white;
        }
        
        .footer-disclaimer a:hover::after {
            width: 100%;
        }
        
        .investment-warning {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.15);
        }
        
        .investment-warning i {
            color: var(--accent);
            font-size: 1.8rem;
            min-width: 40px;
            text-align: center;
        }
        
        .investment-warning p {
            margin-bottom: 0;
            font-style: italic;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            font-size: 0.85rem;
            opacity: 0.7;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .partners-grid {
            animation: fadeIn 0.8s ease-out forwards;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .partners-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
                gap: 25px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .investment-warning {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .investment-warning i {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .partners-section {
                padding: 30px 0 40px;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
                padding-bottom: 12px;
            }
            
            .section-title::after {
                width: 60px;
                height: 3px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 20px;
                padding: 0 15px;
            }
            
            .partner-card {
                padding: 20px 15px;
                border-radius: 14px;
            }
            
            .partner-logo {
                height: 85px;
                margin-bottom: 15px;
            }
            
            .partner-name {
                font-size: 0.95rem;
            }
            
            .footer {
                padding: 40px 0 15px;
            }
            
            .footer-disclaimer {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 576px) {
            .company-logo {
                max-height: 60px;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }
            
            .section-title i {
                margin-right: 10px;
                font-size: 1.4rem;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .partner-card {
                padding: 18px 12px;
            }
            
            .partner-logo {
                height: 75px;
            }
            
            .partner-name {
                font-size: 0.9rem;
            }
            
            .investment-warning {
                padding: 15px;
            }
            
            .investment-warning i {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 400px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .partners-grid {
                grid-template-columns: 1fr;
                max-width: 300px;
            }
            
            .partner-card {
                padding: 20px;
            }
            
            .footer-disclaimer {
                font-size: 0.82rem;
            }
        }
        
        /* Дополнительные улучшения для мобильных */
        @media (hover: none) {
            .partner-card:hover {
                transform: none;
                box-shadow: 0 8px 20px rgba(74, 45, 139, 0.1);
            }
            
            .partner-card:hover .partner-logo img {
                filter: grayscale(100%);
                opacity: 0.9;
                transform: none;
            }
        }