.vps-section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vps-section.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.vps-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}