 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: var(--pk_up_font-family);
        background: var(--pk_up_gray-50);
        color: var(--pk_up_gray-800);
        line-height: 1.6;
    }

    /* ================= HERO SECTION ================= */
    .pk_help_hero {
        background: linear-gradient(135deg, var(--pk_up_primary-dark) 0%, var(--pk_up_primary) 100%);
        padding: 100px 20px 120px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .pk_help_hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .pk_help_hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 69, 0, 0.2);
        border: 1px solid rgba(255, 69, 0, 0.3);
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--pk_up_secondary);
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }

    .pk_help_hero h1 {
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 900;
        color: var(--pk_up_white);
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
        line-height: 1.2;
    }

    .pk_help_hero p {
        font-size: 18px;
        color: var(--pk_up_gray-200);
        max-width: 600px;
        margin: 0 auto 40px;
        position: relative;
        z-index: 1;
    }

   

    /* ================= QUICK LINKS ================= */
    .pk_help_quick-links {
        max-width: 1200px;
        margin: -40px auto 60px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
        z-index: 10;
    }

    .pk_help_quick-card {
        background: var(--pk_up_white);
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--pk_up_gray-100);
        transition: all 0.3s;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
    }

    .pk_help_quick-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-color: var(--pk_up_primary-light);
    }

    .pk_help_quick-card i {
        width: 60px;
        height: 60px;
        background: var(--pk_up_primary-light);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin: 0 auto 15px;
        color: var(--pk_up_primary);
        transition: all 0.3s;
    }

    .pk_help_quick-card:nth-child(1) i { color: var(--pk_up_secondary); background: rgba(255, 69, 0, 0.1); }
    .pk_help_quick-card:nth-child(2) i { color: var(--pk_up_success); background: rgba(16, 185, 129, 0.1); }
    .pk_help_quick-card:nth-child(3) i { color: var(--pk_up_info); background: rgba(59, 130, 246, 0.1); }
    .pk_help_quick-card:nth-child(4) i { color: var(--pk_up_warning); background: rgba(245, 158, 11, 0.1); }

    .pk_help_quick-card:hover i {
        transform: scale(1.1);
    }

    .pk_help_quick-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--pk_up_primary-dark);
        margin-bottom: 8px;
    }

    .pk_help_quick-card span {
        font-size: 13px;
        color: var(--pk_up-gray-600);
    }

    /* ================= MAIN CONTENT ================= */
    .pk_help_container {
        max-width: 1200px;
        margin: 0 auto 80px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    /* Sidebar */
    .pk_help_sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .pk_help_sidebar-title {
        font-size: 14px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--pk_up-gray-400);
        margin-bottom: 20px;
        padding-left: 15px;
    }

    .pk_help_nav {
        list-style: none;
    }

    .pk_help_nav li {
        margin-bottom: 5px;
    }

    .pk_help_nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 15px;
        border-radius: 12px;
        text-decoration: none;
        color: var(--pk_up-gray-600);
        font-weight: 600;
        font-size: 15px;
        transition: all 0.3s;
    }

    .pk_help_nav a i {
        font-size: 18px;
        width: 24px;
        text-align: center;
    }

    .pk_help_nav a:hover,
    .pk_help_nav a.pk_help_active {
        background: var(--pk_up-primary-light);
        color: var(--pk_up-primary);
    }

    .pk_help_nav a.pk_help_active {
        background: var(--pk_up-primary);
        color: var(--pk_up-white);
    }

    /* Content Area */
    .pk_help_content {
        background: var(--pk_up_white);
        border-radius: 24px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    }

    /* Category Section */
    .pk_help_category {
        margin-bottom: 50px;
    }

    .pk_help_category:last-child {
        margin-bottom: 0;
    }

    .pk_help_cat-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--pk_up-gray-100);
    }

    .pk_help_cat-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .pk_help_category:nth-child(1) .pk_help_cat-icon {
        background: rgba(255, 69, 0, 0.1);
        color: var(--pk_up_secondary);
    }

    .pk_help_category:nth-child(2) .pk_help_cat-icon {
        background: rgba(16, 185, 129, 0.1);
        color: var(--pk_up_success);
    }

    .pk_help_category:nth-child(3) .pk_help_cat-icon {
        background: rgba(59, 130, 246, 0.1);
        color: var(--pk_up_info);
    }

    .pk_help_category:nth-child(4) .pk_help_cat-icon {
        background: rgba(245, 158, 11, 0.1);
        color: var(--pk_up_warning);
    }

    .pk_help_cat-header h2 {
        font-size: 24px;
        font-weight: 800;
        color: var(--pk_up-primary-dark);
    }

    /* FAQ Items */
    .pk_help_faq-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .pk_help_faq-item {
        border: 1px solid var(--pk_up-gray-200);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .pk_help_faq-item:hover {
        border-color: var(--pk_up-primary-light);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .pk_help_faq-item.pk_help_open {
        border-color: var(--pk_up-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .pk_help_faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        cursor: pointer;
        background: var(--pk_up-gray-50);
        transition: all 0.3s;
    }

    .pk_help_faq-item.pk_help_open .pk_help_faq-question {
        background: var(--pk_up-primary);
        color: var(--pk_up-white);
    }

    .pk_help_faq-question h3 {
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .pk_help_faq-question h3 i {
        font-size: 18px;
        color: var(--pk_up-secondary);
        transition: all 0.3s;
    }

    .pk_help_faq-item.pk_help_open .pk_help_faq-question h3 i {
        color: var(--pk_up-white);
    }

    .pk_help_faq-toggle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--pk_up-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--pk_up-primary);
        transition: all 0.3s;
    }

    .pk_help_faq-item.pk_help_open .pk_help_faq-toggle {
        transform: rotate(180deg);
        background: rgba(255, 255, 255, 0.2);
        color: var(--pk_up-white);
    }

    .pk_help_faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
    }

    .pk_help_faq-item.pk_help_open .pk_help_faq-answer {
        max-height: 500px;
    }

    .pk_help_faq-answer-content {
        padding: 25px;
        background: var(--pk_up-white);
    }

    .pk_help_faq-answer-content p {
        color: var(--pk_up-gray-600);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .pk_help_faq-answer-content p:last-child {
        margin-bottom: 0;
    }

    .pk_help_faq-answer-content strong {
        color: var(--pk_up-primary-dark);
        font-weight: 700;
    }

    .pk_help_tip-box {
        background: var(--pk_up-primary-light);
        border-left: 4px solid var(--pk_up-primary);
        padding: 15px 20px;
        border-radius: 0 12px 12px 0;
        margin-top: 15px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .pk_help_tip-box i {
        color: var(--pk_up-primary);
        font-size: 20px;
        margin-top: 2px;
    }

    .pk_help_tip-box span {
        font-size: 14px;
        color: var(--pk_up-gray-600);
    }

    /* Contact CTA */
    .pk_help_contact-cta {
        background: linear-gradient(135deg, var(--pk_up-primary-dark) 0%, var(--pk_up-primary) 100%);
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        color: var(--pk_up-white);
        margin-top: 40px;
    }

    .pk_help_contact-cta h3 {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .pk_help_contact-cta p {
        color: var(--pk_up-gray-200);
        margin-bottom: 25px;
        font-size: 16px;
    }

    .pk_help_contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--pk_up-secondary);
        color: var(--pk_up-white);
        padding: 14px 30px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
    }

    .pk_help_contact-btn:hover {
        background: var(--pk_up-secondary-dark);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 1024px) {
        .pk_help_container {
            grid-template-columns: 1fr;
        }

        .pk_help_sidebar {
            position: static;
            display: none;
        }

        .pk_help_quick-links {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .pk_help_hero {
            padding: 80px 20px 100px;
        }

        .pk_help_quick-links {
            grid-template-columns: 1fr;
            margin-top: -30px;
        }

        .pk_help_content {
            padding: 25px;
        }

        .pk_help_cat-header h2 {
            font-size: 20px;
        }

        .pk_help_faq-question {
            padding: 15px 20px;
        }

        .pk_help_faq-question h3 {
            font-size: 15px;
        }

        .pk_help_contact-cta {
            padding: 30px 20px;
        }
    }