/* Feature lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    text-align: left;
    display: inline-block;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.5s ease forwards;
}

.feature-list li:nth-child(1) { animation-delay: 0.05s; }
.feature-list li:nth-child(2) { animation-delay: 0.10s; }
.feature-list li:nth-child(3) { animation-delay: 0.15s; }
.feature-list li:nth-child(4) { animation-delay: 0.20s; }
.feature-list li:nth-child(5) { animation-delay: 0.25s; }

.feature-list .icon {
    color: #0d6efd; /* Bootstrap primary */
    font-weight: bold;
    margin-top: 2px;
}

/* Two-column layout on desktop */
.feature-list-grid {
    max-width: 900px;
}

@media (min-width: 768px) {
    .feature-list-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
    }
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
