.offers-section {
    padding: 60px 0;
}

.offers-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 6rem;
    font-weight: 600;
}

.offers-title span {
    color: #f15a29;
}

.offers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Левая колонка: нумерованные пункты */
.offers-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.offer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.offer-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f15a29;
    line-height: 1;
    text-align: center;
    width: 100%;
}

.offer-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    max-width: 230px;
    text-align: center;
}

/* Правая колонка: изображение */
.offers-right img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

/* Адаптивность */
@media (max-width: 992px) {
    .offers-left {
        gap: 1.5rem;
    }
    
    .offer-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .offers-content {
        grid-template-columns: 1fr;
    }
    
    .offers-left {
        margin-bottom: 2rem;
    }
    
    .offers-right {
        margin-top: 1.5rem;
    }
    
    .offers-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}