.tab-pane p.truncated {
    max-height: 120px; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    opacity: 0.98;
}

.tab-pane p.truncated:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    transition: opacity 0.6s ease;
}

.tab-pane p.expanded {
    max-height: 2000px; /* Large enough to show all content */
    opacity: 1;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

.tab-pane p.expanded:after {
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Style for paragraphs within paragraphs */
.tab-pane p p {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Smooth transition for Learn More link */
.tab-pane a[title="Learn more"] {
    transition: color 0.6s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}
