.about-content .text-wrapper {
    position: relative;
    overflow: hidden;
}

.about-content .collapsible-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}

.about-content .collapsible-text.expanded {
    max-height: 5000px; /* A large enough value to show all content on any screen */
}

.about-content .read-more-container {
    text-align: center;
    padding-top: 20px;
}

.about-content .read-more-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-family: var(--font-main);
    font-weight: 600;
    transition: background-color 0.3s;
}

.about-content .read-more-btn:hover {
    background-color: var(--accent-color-dark);
}

.about-content .fade-out {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    pointer-events: none; /* Allows clicking through the gradient */
    transition: opacity 0.5s;
}

.about-content .fade-out.hidden {
    opacity: 0;
}
