.accordionjs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 10px;
    margin-bottom: 20px;
}

.accordionjs .acc_section {
    position: relative;
    z-index: 10;
    overflow: hidden;
    padding: 10px 0 10px 20px; /* Space for the bullet and line */
}

.accordionjs .acc_section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4px; /* Positioning the line */
    width: 2px;
    background-color: #ccc;
    z-index: -1;
    transition: none;
}

.accordionjs .acc_section .acc_head {
    position: relative;
    display: block;
    cursor: pointer;
}

.accordionjs .acc_section .acc_head::before {
    content: "";
    position: absolute;
    left: -20px; /* Positioning the bullet */
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #444; /* Bullet color */
    border-radius: 50%;
    z-index: 1;
}

.accordionjs .acc_section .acc_head::after {
    content: "›";
    position: absolute;
    right: 10px; /* Positioning the chevron */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 20px;
    color: #000; /* Chevron color */
    transition: transform 0.3s ease;
}

.accordionjs .acc_section .acc_head h3 {
    line-height: 1;
    margin: 5px 0;
}

.accordionjs .acc_section .acc_content {
    padding: 10px 10px 10px 0; /* Align content with head */
}

.accordionjs .acc_section:first-of-type .acc_head::before {
    content: "";
}

.accordionjs .acc_section:first-of-type::before {
    top: 40%;
}

.accordionjs .acc_active.acc_section:first-of-type::before {
    top: 10%;
}

.accordionjs .acc_section:last-of-type::before {
    height: 40%;
}

.accordionjs .acc_active.acc_section:last-of-type::before {
    height: 100%;
}

.accordionjs .acc_section.acc_active > .acc_content {
    display: block;
}

.accordionjs .acc_section.acc_active > .acc_head {
    font-weight: 800;
}

.accordionjs .acc_section.acc_active > .acc_head::after {
    transform: translateY(-50%) rotate(90deg); /* Rotate chevron when active */
}
