.hidden-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hidden-text.show {
    max-height: 1000px;
}

.read-more-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #005177;
}