    /* Hero Section */
    .terms-hero {
        position: relative;
        padding: 160px 0 80px;
        overflow: hidden;
    }

    .terms-hero__bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    }

    .terms-hero__bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    }

    .terms-hero__content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .terms-hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(139, 92, 246, 0.15);
        border: 1px solid rgba(139, 92, 246, 0.3);
        border-radius: 50px;
        padding: 10px 20px;
        color: #A78BFA;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .terms-hero__title {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        margin: 0 0 20px;
        line-height: 1.2;
    }

    .terms-hero__subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 18px;
        line-height: 1.7;
        margin: 0 0 24px;
    }

    .terms-hero__meta {
        display: flex;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .terms-hero__meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

    .terms-hero__meta i {
        color: #8B5CF6;
    }

    /* Navigation */
    .terms-nav {
        background: #0a0f1e;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: sticky;
        top: 80px;
        z-index: 100;
    }

    .terms-nav__wrapper {
        display: flex;
        gap: 8px;
        padding: 16px 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .terms-nav__wrapper::-webkit-scrollbar {
        display: none;
    }

    .terms-nav__item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .terms-nav__item:hover,
    .terms-nav__item.active {
        background: rgba(139, 92, 246, 0.1);
        border-color: rgba(139, 92, 246, 0.3);
        color: #A78BFA;
    }

    /* Content Section */
    .terms-content {
        padding: 60px 0 100px;
        background: #0a0f1e;
    }

    .terms-section {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 32px;
        margin-bottom: 24px;
    }

    .terms-section__header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .terms-section__icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #A78BFA;
    }

    .terms-section__icon.usage {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
        color: #06B6D4;
    }

    .terms-section__icon.payment {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
        color: #10B981;
    }

    .terms-section__icon.restrictions {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
        color: #EF4444;
    }

    .terms-section__icon.termination {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
        color: #F59E0B;
    }

    .terms-section__icon.liability {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
        color: #6366F1;
    }

    .terms-section__title {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin: 0;
    }

    .terms-section__body {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
    }

    .terms-section__body p {
        margin: 0 0 16px;
    }

    /* Highlight Box */
    .terms-highlight {
        display: flex;
        gap: 20px;
        background: rgba(139, 92, 246, 0.08);
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 16px;
        padding: 24px;
        margin-top: 20px;
    }

    .terms-highlight.warning {
        background: rgba(245, 158, 11, 0.08);
        border-color: rgba(245, 158, 11, 0.2);
    }

    .terms-highlight__icon {
        width: 48px;
        height: 48px;
        background: rgba(139, 92, 246, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #A78BFA;
        flex-shrink: 0;
    }

    .terms-highlight.warning .terms-highlight__icon {
        background: rgba(245, 158, 11, 0.15);
        color: #F59E0B;
    }

    .terms-highlight__content h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 8px;
    }

    .terms-highlight__content p {
        margin: 0;
        font-size: 14px;
    }

    /* List Style */
    .terms-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .terms-list__item {
        display: flex;
        gap: 16px;
    }

    .terms-list__icon {
        width: 40px;
        height: 40px;
        background: rgba(16, 185, 129, 0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #10B981;
        font-size: 16px;
        flex-shrink: 0;
    }

    .terms-list__content h5 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 6px;
    }

    .terms-list__content p {
        margin: 0;
        font-size: 14px;
    }

    /* Cards Grid */
    .terms-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }

    .terms-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 14px;
        padding: 20px;
        text-align: center;
    }

    .terms-card__icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #10B981;
        font-size: 18px;
        margin: 0 auto 14px;
    }

    .terms-card h5 {
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 8px;
    }

    .terms-card p {
        font-size: 13px;
        margin: 0;
    }

    /* Prohibited List */
    .terms-prohibited {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .terms-prohibited__item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(239, 68, 68, 0.05);
        border: 1px solid rgba(239, 68, 68, 0.1);
        border-radius: 10px;
        padding: 14px 18px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .terms-prohibited__item i {
        color: #EF4444;
        font-size: 16px;
    }

    /* Sidebar */
    .terms-sidebar {
        position: sticky;
        top: 160px;
    }

    .terms-sidebar__card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 24px;
        margin-bottom: 20px;
    }

    .terms-sidebar__card h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 16px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .terms-sidebar__card h4 i {
        color: #8B5CF6;
    }

    .terms-sidebar__card p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        line-height: 1.6;
        margin: 0 0 16px;
    }

    .terms-sidebar__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .terms-sidebar__list li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .terms-sidebar__list li:last-child {
        border-bottom: none;
    }

    .terms-sidebar__list li i {
        color: #10B981;
    }

    .terms-sidebar__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 20px;
        background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
        border-radius: 12px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .terms-sidebar__btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        color: #fff;
    }

    .terms-sidebar__links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .terms-sidebar__links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .terms-sidebar__links a:hover {
        background: rgba(139, 92, 246, 0.1);
        border-color: rgba(139, 92, 246, 0.3);
        color: #A78BFA;
    }

    .terms-sidebar__links a i {
        color: #8B5CF6;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .terms-hero__title {
            font-size: 36px;
        }

        .terms-sidebar {
            position: static;
            margin-top: 40px;
        }
    }

    @media (max-width: 767px) {
        .terms-hero {
            padding: 120px 0 60px;
        }

        .terms-hero__title {
            font-size: 28px;
        }

        .terms-hero__meta {
            flex-direction: column;
            gap: 12px;
        }

        .terms-section {
            padding: 24px;
        }

        .terms-highlight {
            flex-direction: column;
        }

        .terms-cards {
            grid-template-columns: 1fr;
        }
    }
