.read-more-collapsed {
    max-height: 200px !important;
    overflow: hidden !important;
    position: relative !important;
    transition: max-height 0.4s ease-in-out !important;
}

/* Fade effect at the bottom of the collapsed container */
.read-more-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.read-more-expanded {
    max-height: 2000px !important; /* Large height to allow full content */
    transition: max-height 0.6s ease-in-out !important;
}

.read-more-btn-container {
    text-align: center;
    width: 100%;
	margin-bottom: 15px;
}

.read-more-toggle-btn {
    background-color: #ffffff !important;
    color: #203A6b !important;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;

}
