        .livestream-hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
            color: white;
            padding: 80px 0;
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .feature-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }
        .how-it-works-step {
            position: relative;
        }
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
            margin: 0 auto 1rem;
        }
        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .course-link {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            margin: 0.25rem;
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 25px;
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        .course-link:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .course-link svg {
            width: 16px;
            height: 16px;
            margin-right: 6px;
            fill: currentColor;
            flex-shrink: 0;
        }
        .course-category-header {
            display: inline-flex;
            align-items: center;
            background-color: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .course-category-header .count {
            background-color: var(--primary-color);
            color: white;
            padding: 0.15rem 0.5rem;
            border-radius: 12px;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }
        .courses-grid {
            display: flex;
            flex-wrap: wrap;
            margin: -0.25rem;
        }
        .faq-item {
            background-color: var(--neutral-color-bg);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--secondary-color);
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        .faq-question:hover {
            background-color: rgba(0,0,0,0.03);
        }
        .faq-question svg {
            flex-shrink: 0;
            margin-left: 1rem;
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 1.5rem;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 1.25rem 1.5rem;
        }
