
    .list-group-item {
        transition: all 0.3s ease;
        border: none;
        border-radius: 8px !important;
        margin-bottom: 5px;
    }

    .list-group-item:hover {
        background-color: #f8f9fa;
        transform: translateX(10px);
    }

    section {
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    @keyframes
    fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    section:nth-child(1) {
        animation-delay: 0.1s;
    }

    section:nth-child(2) {
        animation-delay: 0.3s;
    }

    section:nth-child(3) {
        animation-delay: 0.5s;
    }

    section:nth-child(4) {
        animation-delay: 0.7s;
    }
