.accordeon-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.accordeon-item-header {
    background-color: #f8f8f8;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    width: 100%;
    margin: 0;
    transition: .2s linear;
}

.accordeon-item-header:hover {
    background-color: #f0f0f0;
}

.accordeon-item-title {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0 !important;
}

.accordeon-item-content {
    max-height: 0;
    overflow: hidden;
    transition: .8s linear;
    background-color: #fff;
}

.accordeon-item-content p {
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    color: #666;
}

/* Input checkbox for controlling accordion state */
.accordeon-item input[type="checkbox"] {
    display: none;
}

/* When checkbox is checked, expand the content */
.accordeon-item input[type="checkbox"]:checked ~ .accordeon-item-content {
    max-height: 500px; /* Adjust this value based on your content */
}

/* Add plus/minus icon */
.accordeon-item-header::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #7db72b;
    transition: transform 0.3s ease;
}

.accordeon-item input[type="checkbox"]:checked ~ .accordeon-item-header::after {
    content: "-";
}
