.hero-section {
    position: relative;
    padding: 30px 0;
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.95) 30%, 
        rgba(255, 255, 255, 0.85) 70%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Контент, расположенный поверх фонового изображения */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 60%;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 40px;
    color: #f15a29;
    max-width: 800px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }
}