.at-container-413 {
    position: relative;
    padding: 40px 0;
    width: 100%;
}

.at-steps-wrapper-413 {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Horizontal connecting line */
.at-timeline-line-413 {
    position: absolute;
    top: 70px; /* Aligned with icon center */
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #e2e8f0;
    z-index: 1;
    border-radius: 2px;
}

.at-step-413 {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 15px;
    transition: all 0.4s ease;
}

/* Icon Wrapper */
.at-icon-wrapper-413 {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #fff;
    border: 3px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #64748b;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.at-icon-wrapper-413 svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: fill 0.4s ease;
}

/* Hover Interaction: Expand and Highlight */
.at-steps-wrapper-413:hover .at-step-413:not(:hover) {
    opacity: 0.4;
    transform: scale(0.95);
}

.at-step-413:hover {
    transform: scale(1.1);
    z-index: 10;
}

.at-step-413:hover .at-icon-wrapper-413 {
    color: #fff;
    box-shadow: 0 10px 20px rgba(107, 33, 168, 0.3);
}

.at-step-413:hover .at-icon-wrapper-413 svg {
    fill: #fff;
}

/* Content Styling */
.at-title-413 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #334155;
    transition: color 0.4s ease;
}

.at-desc-413 {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .at-steps-wrapper-413 {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }
    
    .at-timeline-line-413 {
        top: 0;
        bottom: 0;
        left: 58px; /* Align with vertical icons */
        width: 4px;
        height: auto;
        right: auto;
    }
    
    .at-step-413 {
        display: flex;
        text-align: left;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .at-icon-wrapper-413 {
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    
    .at-steps-wrapper-413:hover .at-step-413:not(:hover) {
        transform: scale(1);
        transform-origin: left center;
    }
    
    .at-step-413:hover {
        transform: scale(1.05);
        transform-origin: left center;
    }
}