/* Solo CSS specifico per la pagina servizi */
.services-parallax-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('../upload/vetrina/retinetwork-servizi.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed;*/
    padding: 8rem 0;
    color: #fff;
    margin-top:8rem;
}

.services-section-title h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #fff;
}

.services-section-title .title-line {
    color: #fff;
    font-size: 2rem;
}

.services-content-section {
    background: #ececee;
    padding: 3rem 0;
}

.services-image {
    max-width: 100%;
    height: auto;
}

.services-content-wrapper {
    border-left: 0.5rem solid var(--primary-color);
    padding-left: 2rem;
}

/* Override specifici per evitare conflitti */
.services-content-section h3.h-3 {
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.services-content-section .alpha {
    list-style-type: upper-alpha;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.services-content-section .alphaL {
    list-style-type: lower-alpha;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.services-content-section .decimal {
    list-style: none;
    counter-reset: service-counter;
    padding-left: 0;
}

.services-content-section .decimal-item {
    counter-increment: service-counter;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    float: none;
    width: 100%;
}

.services-content-section .decimal-item::before {
    content: counter(service-counter);
    background: var(--primary-color);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 0.75rem;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 1;
}

.services-content-section .decimal-item > div {
    flex: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .services-content-wrapper {
        border-left: none;
        border-top: 0.5rem solid var(--primary-color);
        padding-left: 0;
        padding-top: 2rem;
        margin-top: 2rem;
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .services-parallax-section {
        padding: 4rem 0;
    }

    .services-section-title h2 {
        font-size: 2rem;
    }

    .services-image {
        max-width: 270px;
    }
}

@media (max-width: 480px) {
    .services-image.img-xs {
        max-width: 270px;
    }
}