.item_container {
    width: 100%;
    margin-left: 10px;
    padding-left: 10px; 
    margin-bottom: 10px; /* spacing between items */
}
.item_title {
    cursor: pointer; 
    font-size: 18px; 
    margin-left: -20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.item_title:hover {
    text-decoration: underline;
}
.item_title .arrow {
    margin-left: 6px;
    position: relative;
}
.item_title .arrow::before {
    content: '';
    display: inline-block;
    width:  18px;
    height: 18px;
    margin-right: 22px;
    background-image: url('/assets/images/expand.png');
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}
.item_title.active .arrow::before {
    background-image: url('/assets/images/collapse.png');
}
.item_content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.2s ease-out, padding 0.5s ease-out;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 27px;
    margin-right: 20px;
    text-align: justify;
}

.item_content.expanded {
    max-height: 1000px; /* Large enough to handle content */
}
