 /* Estilos para acordeones con prefijo help_ */
    .help_accordion-item {
        border: 1px solid #ddd;
        margin-bottom: 10px;
        border-radius: 4px;
        overflow: hidden;
    }

    .help_accordion-header {
        padding: 15px;
        background-color: #f8f9fa;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s;
    }

    .help_accordion-header:hover {
        background-color: #e9ecef;
    }

    .help_accordion-header h4 {
        margin: 0;
        font-size: 16px;
    }

    .help_accordion-icon {
        font-size: 18px;
        font-weight: bold;
    }

    .help_accordion-content {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
    }

    .help_accordion-content.active {
        padding: 15px;
        max-height: 1000px;
    }

    /* Estilos existentes */
    .page_help .faq-wrapper {
        display: flex;
        width: 100%;
    }

    .page_help .sidebar {
        width: 25%;
        float: left;
    }

    .page_help .faq-content {
        width: 75%;
        float: right;
    }

    .page_help .tab {
        display: none;
    }

    .page_help .tab.active {
        display: block;
    }

    .page_help .nav li {
        cursor: pointer;
    }

    .page_help .nav li.active {
        font-weight: bold;
        background-color: #f5f5f5;
    }
    @media (max-width: 899px) {
    .page_help li {
        border-bottom: 1px solid black;
    }
}