/*--------------------------------------------------------------
# Prestations Section - Style NewPower Bubble
--------------------------------------------------------------*/

.prestations-intro {
    padding: 80px 0 40px;
    background-color: #fff;
    position: relative;
    margin-bottom: 0;
    z-index: 1;
    overflow: visible;
}

/* Bubble container */
.prestations-bubble {
    background: transparent;
    padding: 20px 0;
    position: relative;
    overflow: visible;
}

/* Triangle pointing down */
.prestations-intro::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 40px;
    border-color: #fff transparent transparent transparent;
    z-index: 2;
}

/* Le style h2 est maintenant géré par .section-title dans style.css */

.prestations-content {
    max-width: 100%;
}

.prestations-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.prestations-content p:last-child {
    margin-bottom: 0;
}

.prestations-content strong {
    color: #0099CC;
    font-weight: 600;
}


/* Responsive Design */
@media (max-width: 768px) {
    .prestations-intro {
        padding: 30px 0 20px;
    }
    
    .prestations-bubble {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .prestations-intro::after {
        border-width: 30px 30px 0 30px;
        bottom: -30px;
    }
    
    
    .prestations-content p {
        font-size: 1rem;
        text-align: left; /* On mobile, left align for better readability */
    }
}

/* Animation on scroll */
.prestations-bubble {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

