        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --boost-blue: #0033a0;
            --boost-orange: #ff6d00;
            --boost-light-blue: #005eb8;
            --text-light: #f8f9fa;
            --text-dark: #333;
            --bg-light: #f8f9fa;
            --bg-gray: #e9ecef;
            --promo-green: #00c389;
            --promo-purple: #8a2be2;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(240, 245, 255, 0.95)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white" opacity="0.05"/><circle cx="20" cy="20" r="2" fill="%230033a0" opacity="0.1"/><circle cx="50" cy="50" r="3" fill="%230033a0" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%230033a0" opacity="0.1"/></svg>');
            background-size: 150px;
        }

        /* Header Banner */
        .header-banner {
            background-color: var(--promo-green);
            color: white;
            text-align: center;
            padding: 0.8rem;
            font-size: 0.9rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .header-banner a {
            color: white;
            font-weight: bold;
            text-decoration: underline;
            margin-left: 0.5rem;
            cursor: pointer;
            position: relative;
            z-index: 2;
        }

        .banner-decoration {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }

        /* Header Styles */
        header {
            background-color: var(--boost-blue);
            padding: 0.8rem 1.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--boost-orange);
        }

        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            cursor: pointer;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--boost-orange);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--boost-orange);
            border-radius: 3px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cart-icon {
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--boost-orange);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-icon:hover {
            color: var(--boost-orange);
        }

        .login-btn {
            background-color: var(--boost-orange);
            color: white;
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .login-btn:hover {
            background-color: #e05e00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Hero Section для FAQ */
        .faq-hero {
            background: linear-gradient(135deg, var(--boost-blue) 0%, var(--boost-light-blue) 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .faq-hero::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 200 200"><circle cx="30" cy="30" r="10" fill="white" opacity="0.1"/><circle cx="170" cy="80" r="15" fill="white" opacity="0.1"/><circle cx="100" cy="150" r="8" fill="white" opacity="0.1"/></svg>');
            background-size: 300px;
            opacity: 0.2;
        }

        .faq-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .faq-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .faq-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* Поиск по FAQ */
        .faq-search {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .faq-search-container {
            position: relative;
        }

        .faq-search input {
            width: 100%;
            padding: 1.3rem 1.8rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            padding-right: 170px;
            transition: all 0.3s;
        }

        .faq-search input:focus {
            outline: none;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .faq-search button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: var(--boost-orange);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0.9rem 1.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .faq-search button:hover {
            background: #e05e00;
            transform: translateY(-2px);
        }

        /* Основной контент FAQ */
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1rem;
            display: flex;
            gap: 3rem;
        }

        /* Категории */
        .faq-categories {
            flex: 0 0 280px;
        }

        .categories-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 130px;
            border: 1px solid #e0e7ff;
        }

        .categories-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: var(--boost-blue);
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--bg-gray);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .category-list {
            list-style: none;
        }

        .category-list li {
            margin-bottom: 0.8rem;
            position: relative;
        }

        .category-list a {
            display: block;
            padding: 0.9rem 1.2rem;
            border-radius: 10px;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 3px solid transparent;
        }

        .category-list a i {
            width: 24px;
            text-align: center;
            color: var(--boost-blue);
        }

        .category-list a:hover,
        .category-list a.active {
            background: rgba(0, 51, 160, 0.05);
            color: var(--boost-blue);
            border-left: 3px solid var(--boost-orange);
        }

        .category-list a.active {
            font-weight: 600;
        }

        /* Вопросы и ответы */
        .faq-content {
            flex: 1;
        }

        .faq-section {
            margin-bottom: 3.5rem;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e0e7ff;
        }

        .faq-section-header {
            background: linear-gradient(to right, var(--boost-blue), var(--boost-light-blue));
            padding: 1.5rem 2rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .faq-section-header h2 {
            font-size: 1.6rem;
            font-weight: 600;
        }

        .faq-accordion {
            background: white;
        }

        .faq-item {
            border-bottom: 1px solid #f0f4ff;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            color: var(--boost-blue);
        }

        .faq-question:hover {
            background-color: #f9faff;
        }

        .faq-question .icon-container {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #f0f4ff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .faq-question i {
            color: var(--boost-blue);
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #fcfcff;
            color: #555;
            line-height: 1.7;
        }

        .faq-answer-content {
            padding: 0.5rem 0 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        .faq-item.active .faq-question .icon-container {
            background: var(--boost-orange);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            color: white;
        }

        /* Дополнительная помощь - Только тикеты */
        .additional-help {
            background: linear-gradient(135deg, var(--boost-blue) 0%, var(--promo-purple) 100%);
            color: white;
            border-radius: 15px;
            padding: 3rem 2.5rem;
            margin-top: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .additional-help::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 200 200"><circle cx="30" cy="30" r="8" fill="white" opacity="0.1"/><circle cx="170" cy="80" r="12" fill="white" opacity="0.1"/><circle cx="100" cy="150" r="6" fill="white" opacity="0.1"/></svg>');
            background-size: 300px;
            opacity: 0.15;
        }

        .additional-help h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            position: relative;
        }

        .additional-help p {
            max-width: 700px;
            margin: 0 auto 1.5rem;
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
        }

        .ticket-system {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 15px;
            padding: 2.5rem;
            max-width: 700px;
            margin: 2rem auto 0;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ticket-system h4 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--boost-orange);
        }

        .ticket-steps {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .ticket-step {
            flex: 1;
            min-width: 200px;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            text-align: center;
        }

        .ticket-step i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--boost-orange);
        }

        .ticket-step h5 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .ticket-step p {
            font-size: 0.95rem;
        }

        .ticket-btn {
            background: var(--boost-orange);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .ticket-btn:hover {
            background: #e05e00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        footer {
            background-color: var(--boost-blue);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230033a0" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,261.3C672,256,768,224,864,197.3C960,171,1056,149,1152,165.3C1248,181,1344,235,1392,261.3L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            position: relative;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--boost-orange);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 1rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-column ul li a i {
            width: 20px;
            color: var(--boost-orange);
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #aaa;
            font-size: 0.95rem;
            position: relative;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--boost-orange);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .faq-container {
                flex-direction: column;
                padding: 3rem 1rem;
            }

            .faq-categories {
                flex: 0 0 auto;
                width: 100%;
            }

            .categories-card {
                position: static;
            }

            .category-list {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 1rem;
            }

            .ticket-steps {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .faq-hero h1 {
                font-size: 2.2rem;
            }

            .faq-hero p {
                font-size: 1rem;
            }

            .faq-search input {
                padding-right: 1.8rem;
            }

            .faq-search button {
                position: relative;
                width: 100%;
                margin-top: 1rem;
                top: 0;
                right: 0;
            }
        }

        @media (max-width: 480px) {
            .faq-question {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 1.5rem;
            }

            .faq-section-header {
                padding: 1.2rem 1.5rem;
            }

            .faq-section-header h2 {
                font-size: 1.3rem;
            }

            .additional-help {
                padding: 2rem 1.5rem;
            }
        }

        /* Анимации */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-section {
            animation: fadeIn 0.6s ease-out;
        }

        .faq-section:nth-child(1) {
            animation-delay: 0.1s;
        }

        .faq-section:nth-child(2) {
            animation-delay: 0.2s;
        }

        .faq-section:nth-child(3) {
            animation-delay: 0.3s;
        }

        .faq-section:nth-child(4) {
            animation-delay: 0.4s;
        }

        .faq-section:nth-child(5) {
            animation-delay: 0.5s;
        }

        .faq-section:nth-child(6) {
            animation-delay: 0.6s;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .ticket-btn:hover {
            animation: pulse 0.8s ease;
        }