
/* Стили для иконок преимуществ */
.advantage-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
    border-left: 4px solid #4CAF50;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
    /* Добавьте эти свойства: */
    flex-shrink: 0; /* Запрет сжатия в flex-контейнере */
    min-width: 28px; /* Фиксированная минимальная ширина */
    font-size: 18px; /* Контроль размера символа */
    box-sizing: border-box; /* Защита от изменения размеров */
}

@media (max-width: 768px) {
    .icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 16px !important;
    }
    
    .advantage-item {
        font-size: 16px; /* Оптимальный размер для мобильных */
        padding: 12px 15px; /* Уменьшенные отступы */
    }
}