/* advantage.css — адаптовано для #features ul > li */

#features {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

#features .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

#features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

#features ul li {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 18px;
}

#features ul li:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

#features .icon-square {
    margin-bottom: 15px;
}

#features .icon-square img {
    max-width: 60px;
    height: auto;
}