.service-logo {
    height: 98px;
    width: auto;
    margin-left: 2rem;
}

@media (max-width: 768px) {
    .service-logo {
        height: 49px;
        margin-left: 1rem;
    }

    .service-section {
        padding: 0;
        margin-bottom: 1.6rem;
        transform: scale(0.8);
        transform-origin: top center;
    }

    .service-container {
        display: block;
        width: 100%;
        min-height: 100vh;
        padding-bottom: 2rem;
    }

    .service-content {
        width: 90%;
        padding: 0.8rem;
        margin-right: auto;
        margin-left: auto;
        margin-top: 2.0rem;
        margin-bottom: 0.8rem;
    }

    .service-content h2 {
        font-size: 1.44rem;
        text-align: center;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }

    .service-content h2 img {
        height: 48px;
        width: auto;
    }

    .service-capacity {
        font-size: 1.2rem;
        text-align: center;
        margin: 0.8rem 0;
    }

    .service-description {
        padding: 0 0.8rem;
    }

    .service-description p {
        font-size: 0.76rem;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 1.2rem;
    }

    .service-features {
        list-style-type: none;
        padding: 0 2rem;
        margin: 1rem 0;
    }

    .service-features li {
        font-size: 0.80rem;
        margin-bottom: 0.41rem;
        position: relative;
        padding-left: 1.2rem;
        line-height: 1.2;
        background-color: #f2f1f125;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
        border-radius: 4px;
    }

    .service-features li:before {
        content: '•';
        font-size: 1.40rem;
        position: absolute;
        left: 0;
        color: #FCA311;
        margin-left: 0.4rem;
    }

    .service-carousel {
        width: 75%;
        height: 45vh;
        position: center;
        align-items: center;
        justify-content: center;
        margin-top: 0.8rem;
        margin-left: 12.5%;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 0rem;
        margin-bottom: 0rem;
    }

    .carousel-inner {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 0;
    }

    .carousel-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.96rem;
        background: rgba(255, 255, 255, 0.8);
        color: #000;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 2;
        padding: 0;
        line-height: 1;
    }

    .prev { 
        left: 8px;
        padding-right: 2px;
    }
    .next { 
        right: 8px;
        padding-left: 2px;
    }

    .carousel-dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 2;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        border: none;
    }

    .carousel-dot.active {
        background: #fff;
    }

    .btn {
        width: calc(100% - 1.6rem);
        margin: 1.2rem auto;
        display: block;
        padding: 0.8rem;
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Ajustements pour tablettes */
@media (min-width: 569px) and (max-width: 768px) {
    .service-carousel {
        height: 45vh;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-description p {
        font-size: 1rem;
    }

    .service-features {
        padding: 0 3rem;
    }

    .service-features li {
        font-size: 1rem;
    }

    .btn {
        width: 60%;
    }
}