section {
            padding: 5rem 0;
            position: relative;
        }

        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-dark);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 61, 113, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-30px, -30px); }
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-section h1 {
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .hero-section .cta-button {
            font-size: 1.3rem;
            padding: 20px 48px;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .table-of-contents {
            background: var(--dark-soft);
            padding: 3rem 0;
            border-top: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
        }

        .table-of-contents h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .table-of-contents ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .table-of-contents li {
            background: rgba(0, 217, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .table-of-contents li:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateX(8px);
        }

        .table-of-contents a {
            color: var(--text);
            padding: 1rem 1.5rem;
            display: block;
            position: relative;
            padding-left: 2.5rem;
        }

        .table-of-contents a::before {
            content: '→';
            position: absolute;
            left: 1rem;
            color: var(--primary);
            font-weight: bold;
        }

        .numbered-flow .steps-list {
            counter-reset: step-counter;
            list-style: none;
            padding: 0;
        }

        .numbered-flow .steps-list li {
            counter-increment: step-counter;
            position: relative;
            padding: 1.5rem 1.5rem 1.5rem 5rem;
            background: rgba(0, 217, 255, 0.05);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .numbered-flow .steps-list li:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateX(8px);
        }

        .numbered-flow .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            color: var(--dark);
            font-weight: bold;
            font-size: 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-glow);
        }

        .text-block, .highlight-box, .feature-block, article {
            background: rgba(26, 31, 58, 0.6);
            padding: 2rem;
            border-radius: 16px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary);
        }

        .highlight-box {
            background: rgba(0, 217, 255, 0.08);
            border-left-color: var(--secondary);
        }

        .highlight-list {
            background: var(--gradient-secondary);
            padding: 2rem;
            border-radius: 16px;
            margin: 1.5rem 0;
        }

        .highlight-list p {
            color: var(--text);
        }

        .checklist {
            list-style: none;
            padding: 0;
        }

        .checklist li {
            position: relative;
            padding: 1rem 1rem 1rem 3rem;
            margin-bottom: 1rem;
            background: rgba(0, 217, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .checklist li:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateX(8px);
        }

        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 1rem;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.5rem;
        }

        .cards-grid-3, .cards-grid-4 {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        .cards-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .cards-grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .info-card {
            background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(255, 61, 113, 0.1) 100%);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

        .feature-list {
            background: rgba(26, 31, 58, 0.8);
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-soft);
        }

        thead {
            background: var(--gradient-primary);
        }

        thead th {
            color: var(--dark);
            font-weight: 700;
            padding: 1.5rem 1rem;
            text-align: left;
            white-space: nowrap;
        }

        tbody tr {
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            transition: background 0.3s ease;
        }

        tbody tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        tbody td {
            padding: 1.5rem 1rem;
            color: var(--text-muted);
        }

        .accordion-item {
            background: var(--dark-soft);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 1.5rem 2rem;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            user-select: none;
        }

        .accordion-header:hover {
            background: rgba(0, 217, 255, 0.05);
            color: var(--primary);
        }

        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
        }

        .accordion-item.active .accordion-body {
            max-height: 1000px;
            padding: 0 2rem 2rem;
        }

        .cta-section {
            background: var(--gradient-primary);
            text-align: center;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .cta-section h2 {
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: var(--dark);
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .cta-section .btn-primary {
            background: var(--dark);
            color: var(--primary);
            font-size: 1.3rem;
            padding: 20px 48px;
        }

        .cta-section .btn-primary:hover {
            background: var(--dark-soft);
            box-shadow: 0 0 30px rgba(10, 14, 39, 0.5);
        }

        @media (max-width: 767px) {
            section {
                padding: 3rem 0;
            }

            .hero-section {
                min-height: 70vh;
                padding: 4rem 0;
            }

            .hero-section::before,
            .hero-section::after {
                width: 300px;
                height: 300px;
            }

            .hero-section p {
                font-size: 1.1rem;
            }

            .hero-section .cta-button {
                font-size: 1.1rem;
                padding: 16px 32px;
            }

            .table-of-contents ul {
                grid-template-columns: 1fr;
            }

            .numbered-flow .steps-list li {
                padding: 1.5rem 1rem 1.5rem 4rem;
            }

            .numbered-flow .steps-list li::before {
                left: 1rem;
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .cards-grid-3,
            .cards-grid-4 {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cta-section {
                padding: 4rem 0;
            }

            .cta-section .btn-primary {
                font-size: 1.1rem;
                padding: 16px 32px;
            }

            table {
                font-size: 0.875rem;
            }

            thead th,
            tbody td {
                padding: 1rem 0.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .cards-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }