/* ========== ADVANTAGES SECTION ========== */
.advantages {
    padding: 80px 0;
    background: #f5f5f5;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.advantage-number {
    width: 54px;
    height: 54px;
    background: #c83030;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 4px;
}

.advantage-content {
    flex: 1;
}

.advantage-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2c2c2c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 15px;
    color: #6f6f6f;
    margin-bottom: 8px;
    line-height: 1.5;
}

.advantage-benefit {
    font-weight: 700;
    font-size: 15px;
    color: #c83030;
    font-style: italic;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantages {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .advantage-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .advantage-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .advantage-title {
        font-size: 17px;
    }
}