
.wp-main { 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container_wp {
    display: flex;
    gap: 60px;
    max-width:100%;
    align-items: center;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-button {
    height: 78px;
    display: block; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s; 
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 42px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    color: #277e6b;
    z-index: 1;
}

.step-line {
    width: 3px;
    height: 50px;
    background: #333;
    margin-top: -5px;
}

.step-item:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-title {
    font-size: 20px; 
    color: #277e6b;
    margin-bottom: 5px;
    font-weight: 600;
}

.step-description {
    font-size: 16px; 
    color: #010101;
    font-weight: 500;
}

#mainPageContent .main-title-account h2.open-account{
    font-size: 22px;
    font-weight: 700;
    color: #010101;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 2.5em;
    font-family: 'Roboto', Arial, sans-serif;

}


/* Tablette */
@media (max-width: 768px) {
    .container_wp {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .left-section {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

  
    .right-section {
        width: 100%;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .wp-main {
        padding: 15px;
    }

    .container_wp {
        gap: 30px;
        padding: 0 10px;
    }

    .left-section {
        flex-direction: column;
        width: 100%;
    }
 
    .step-item {
        gap: 15px;
    }

    .step-number {
        width: 35px;
        height: 50px;
        font-size: 24px;
    }

    .step-line {
        height: 40px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-description {
        font-size: 14px;
    }

    .right-section {
        gap: 15px;
    }
    
     #mainPageContent .main-title-account h2.open-account {
        font-size: 18px;
    }
}