.how-it-works {
    margin: 1em auto 0 auto;
    padding: 1.5em;
    max-width: 70%;
    background: var(--color-white, #fff);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.how-it-works .logo-container {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-it-works .content {
    flex: 1;
    font-size: 1.5rem;
}

.how-it-works h2 {
    text-align: center;
    color: var(--color-primary);
    flex-basis: 100%;
}

.how-it-works .steps {
    flex: 1;
    margin: 20px 0;
    font-size: 1.2rem;
}

.how-it-works .step {
    margin-bottom: 20px;
}

.how-it-works .steps .step {
    margin-bottom: 15px;
}

.how-it-works .step h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.how-it-works ul {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.9rem; /* Réduction de la taille de police */
}

.how-it-works ul li {
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    justify-content: space-around;
    padding: 2em;
    width: 70%;
}

.action-button {
    border-radius: 5px;
    padding: 1em;
}

.container {
    display: flex;
    justify-content: space-between;
    margin: 1.5em 0;
}

.darkmode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo {
    max-width: 25vw;
}