.ps-wrapper-ac23aa4d {
    width: 100%;
    padding: 30px 0;
    font-family: inherit;
}

.ps-steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* Connecting Process Line (Horizontal Desktop Only) */
.ps-steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, #E31E24 15%, #E31E24 85%, transparent);
    z-index: 1;
}

.ps-step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.ps-step-card:hover {
    transform: translateY(-5px);
}

.ps-step-num {
    width: 50px;
    height: 50px;
    background-color: #E31E24;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ps-step-card:hover .ps-step-num {
    box-shadow: 0 0 0 8px rgba(227, 30, 36, 0.3);
}

.ps-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 10px 0 8px 0;
    line-height: 1.4;
}

.ps-step-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    padding: 0 10px;
}

/* Responsive Flow (Vertical Roadmap with down arrows for Mobile/Tablet) */
@media (max-width: 1024px) {
    .ps-steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ps-steps-container::before {
        display: none;
    }

    .ps-step-card {
        padding-bottom: 20px;
    }

    /* Vertical Down Arrow Line */
    .ps-step-card:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        color: #E31E24;
        font-weight: bold;
    }
}
