.advantages-toggle {
    display: inline-block;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.advantages-toggle:hover {
    text-decoration: underline;
}

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

.advantages-details.active {
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}