* { font-family: 'Inter', sans-serif; }
        .container-custom { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
        @media (min-width: 768px) { .container-custom { padding-left: 1.5rem; padding-right: 1.5rem; } }
        
        /* Сине-золотая тема */
        .bg-dark-blue { background-color: #0A1C3A; }
        .bg-dark-blue-light { background-color: #13294B; }
        .bg-dark-blue-deep { background-color: #051024; }
        .text-dark-blue { color: #0A1C3A; }
        .text-gold { color: #D4AF37; }
        .bg-gold { background-color: #D4AF37; }
        .bg-gold-dark { background-color: #B8922E; }
        .border-gold { border-color: #D4AF37; }
        .hover\:bg-gold-dark:hover { background-color: #B8922E; }
        .hover\:text-gold:hover { color: #D4AF37; }
        .hover\:border-gold:hover { border-color: #D4AF37; }
        
        /* Стили для аккордеона */
        .faq-card {
            transition: all 0.25s ease;
            overflow: hidden;
        }
        .faq-card:hover {
            border-color: #D4AF37;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .faq-question {
            cursor: pointer;
            transition: all 0.2s;
        }
        .faq-question:hover {
            background: linear-gradient(90deg, #fef9e6, #ffffff);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background-color: #fafaf9;
            border-top: 0px solid #e5e7eb;
        }
        .faq-answer.open {
            max-height: 800px;
            border-top-width: 1px;
        }
        .faq-icon {
            transition: transform 0.3s ease;
        }
        .faq-icon.rotate {
            transform: rotate(180deg);
        }
        
        /* Карточки категорий */
        .category-card {
            transition: all 0.25s ease;
            background: white;
            border: 1px solid #e5e7eb;
        }
        .category-card:hover {
            transform: translateY(-5px);
            border-color: #D4AF37;
            background: linear-gradient(135deg, #ffffff, #fef9e6);
            box-shadow: 0 12px 24px -10px rgba(0,0,0,0.1);
        }
        
        /* Баннер подписки */
        .support-banner {
            background: linear-gradient(135deg, #0A1C3A, #13294B);
        }
        
        /* Анимация */
        .faq-section {
            animation: fadeInUp 0.5s ease-out;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .categories-scroll {
            scrollbar-width: thin;
            scrollbar-color: #D4AF37 #e5e7eb;
        }
        .categories-scroll::-webkit-scrollbar {
            height: 4px;
        }
        .categories-scroll::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }
        .categories-scroll::-webkit-scrollbar-thumb {
            background: #D4AF37;
            border-radius: 10px;
        }
        
        .badge-new {
            background: linear-gradient(135deg, #D4AF37, #B8922E);
        }
        .tariff-card {
            transition: all 0.3s ease;
        }
        .tariff-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
        }
        .tariff-card.exclusive {
            border: 2px solid #D4AF37;
            background: linear-gradient(135deg, #0A1C3A, #13294B);
            color: white;
        }
        .tariff-card.exclusive .text-gold {
            color: #D4AF37;
        }
        .tariff-card.exclusive .price {
            color: #D4AF37;
        }
        .tariff-card.exclusive ul li i {
            color: #D4AF37;
        }
        .tariff-card.exclusive .btn-gold {
            background: #D4AF37;
            color: #0A1C3A;
        }
        .tariff-card.exclusive .btn-gold:hover {
            background: #B8922E;
        }
