.line-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.line-arrow .line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #2D5A27, transparent);
    animation: growLine 2s ease-in-out infinite;
}

@keyframes growLine {
    0% {
        height: 20px;
        opacity: 0.3;
    }
    50% {
        height: 40px;
        opacity: 1;
    }
    100% {
        height: 20px;
        opacity: 0.3;
    }
}

.line-arrow .arrow-icon {
    font-size: 1.5rem;
    color: #2D5A27;
    margin-top: -2px;
    animation: bounceArrow 2s ease-in-out infinite;
}