.signup-timeline-a7aceb67 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.signup-timeline-a7aceb67::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1; /* Changed to ensure timeline stays behind circles */
}

.signup-timeline-a7aceb67 .timeline-step {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    z-index: 2; /* Ensures step content stays above timeline */
}

.signup-timeline-a7aceb67 .timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.signup-timeline-a7aceb67 .timeline-step:nth-child(odd) {
    left: 0;
}

.signup-timeline-a7aceb67 .timeline-step:nth-child(even) {
    left: 50%;
}

.signup-timeline-a7aceb67 .timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: white;
    border: 4px solid #333;
    top: 15px;
    border-radius: 50%;
    z-index: 3; /* Increased z-index to stay above the line */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
}

.signup-timeline-a7aceb67 .timeline-step:nth-child(even) .timeline-icon {
    left: -20px;
}

.signup-timeline-a7aceb67 .timeline-content {
    padding: 20px 30px;
    background-color: #f9f9f9;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.signup-timeline-a7aceb67 .timeline-step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.signup-timeline-a7aceb67 .timeline-image img {
    width: 100%;
    border-radius: 4px;
    margin-top: 15px;
    object-fit: cover;
}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {
    .signup-timeline-a7aceb67::after {
        left: 31px;
    }
    
    .signup-timeline-a7aceb67 .timeline-step {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .signup-timeline-a7aceb67 .timeline-step:nth-child(even) {
        left: 0%;
    }
    
    .signup-timeline-a7aceb67 .timeline-step:nth-child(odd) .timeline-icon,
    .signup-timeline-a7aceb67 .timeline-step:nth-child(even) .timeline-icon {
        left: 11px;
    }
}