.service-hero-custom {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 60px 0;
}

.service-hero-custom h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-custom p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 30px auto;
}

.service-hero-custom .btn {
    margin: 0 10px;
}

.service-advantages {
    padding: 40px 0;
}

.service-advantages .slider-container {
    overflow: visible;
}

.service-advantages .advantages-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-advantages .advantage-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 200px;
}
/* Ремонт компьютеров */
.service-hero-custom {
    background-image: url('/IMG/remont-komputerov-v-yuzhno-sakhalinske-mb.webp');
    background-size: 100% auto;
    background-position: center;
    position: relative;
}

.service-hero-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.service-hero-custom .container {
    position: relative;
    z-index: 2;
}
@media (max-width: 768px) {
.service-hero-custom {
        background-size: cover;
        background-position: center;
    }

.service-hero-custom::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    }
     .service-hero-custom h1,
    .service-hero-custom p,
    .service-hero-custom .btn {
        color: white !important;
        border-color: white !important;
    }
}