.lc-circle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.lc-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-landing-color, #3366FF);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50px) scale(0.5);
    animation: lc-slideDownScale 0.7s ease forwards;
    animation-delay: 1s;
}

.lc-inner-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    animation: lc-fadeIn 0.3s ease forwards;
    animation-delay: 1.7s;
}

.lc-item {
    width: 350px;
    font-size: 15px;
    margin-bottom: 5px;
    text-align: center;
    opacity: 0;
    transform: translateY(-50px);
    animation: lc-slideDown 0.7s ease forwards;
    animation-delay: 1.2s;
}

.lc-title {
    font-weight: 600;
}

.lc-subtitle {
    color: grey;
}

@keyframes lc-slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lc-slideDownScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes lc-fadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}