/* Fix pour la section "Comment ça marche" */
.how-it-works {
    padding: 100px 0;
    background-color: var(--secondary-color); /* Fond blanc */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    background-color: rgba(0, 183, 206, 0.1); /* Bleu avec 90% de transparence */
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0, 183, 206, 0.05);
}

.step:hover {
    transform: translateY(-10px);
}

.step-gif {
    margin-bottom: 20px;
}

.step-gif img {
    max-width: 100%;
    height: auto;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .steps {
        gap: 20px;
    }
    
    .step {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step {
        margin-bottom: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .how-it-works .section-title h2 {
        font-size: 8.5vw;
        white-space: nowrap;
    }
}
