.accordion-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.accordion {
    width: 50%;
    padding: 10px;
}

.image-container {
    width: 50%;
    padding: 10px;
}

.accordion-item {
    border: none; /* Remove the square border */
    border-bottom: 1px solid #ddd; /* Add border below each accordion item */
    padding: 10px 0;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.accordion-item.active {
    border-bottom-color: #333; /* Change border color when active */
}

.accordion-item:hover {
    border-bottom-color: #666; /* Change border color on hover */
}


.accordion-title {
    margin: 0;
}

.accordion-image {
    width: 100%;
}

@media (max-width: 768px) {
    .accordion, .image-container {
        width: 100%;
        padding: 0;
    }
    
    .image-container {
    margin-top: 50px;
}

}

.accordion-item {
    position: relative;
    padding-right: 20px; /* Space for the arrow */
}

.accordion-title::after {
    content: "\f107"; /* FontAwesome down arrow */
    font-family: FontAwesome;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-item.active .accordion-title::after {
    content: "\f106"; /* FontAwesome up arrow */
}
