/* styles.css */
.collapsible {
    cursor: pointer;
}

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

.content.show {
    max-height: 200px; /* Adjust this value as needed */
}
