/* === advantages.css — блок переваг === */

.advantages-grid {
    display: grid;
    grid-template-columns: 35% 30% 35%;
    max-width: 1200px;
    margin: 40px auto;
    gap: 30px;
    padding: 0 15px;
}

.grid-cell {
    display: flex;
    align-items: center;
}

.align-right {
    justify-content: flex-end;
}

.align-center {
    justify-content: center;
}

.align-left {
    justify-content: flex-start;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.advantage img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.advantage-text {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}
