/* Styles spécifiques pour la landing page Soins Hydratation Visage */

.hero h1 {
    color: #333;
}

.section-title {
    color: #333;
}

/* Personnalisation des facteurs-grid pour cette landing */
.factors-grid .factor-card {
    border-left: 3px solid #333;
}

/* Personnalisation des étapes pour cette landing */
.treatment-steps {
    counter-reset: step;
    list-style-type: none;
    margin: 20px 0;
    padding: 0;
}

.treatment-steps li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 35px;
}

.treatment-steps li:before {
    content: counter(step);
    counter-increment: step;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #333;
    color: white;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}