.sectionp {
    max-width: 100%;
    margin: auto;
    padding: 60px 20px;
}


.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ddd;
    transform: translateX(-50%);
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.6s ease;
}

.step.show {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    padding: 20px 40px;
}

.step img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #007BFF;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	z-index:10;
}

.step-wrapper {
    position: relative;
}

/* Responsive */
@media(max-width: 768px) {
	
	.sectionp .letrapro1{font-size:2vh;}
	.sectionp .letrapro2{font-size:2vh;}

    .timeline::before {
        left: 20px;
    }

    .step {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .step img, .step-content {
        width: 100%;
    }

    .step-content {
        padding: 20px;
    }

    .step-number {
        left: 20px;
        transform: translateY(-50%);
    }
}