.pt-5d07358d-widget-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.pt-5d07358d-main-title {
    margin-bottom: 30px;
    /* Added padding-left to align the title with the text in the steps */
    padding-left: 90px;
}

.pt-5d07358d-container {
    position: relative;
    padding: 0;
}

.pt-5d07358d-timeline-line {
    position: absolute;
    left: 24px;
    top: 25px; /* Shortened from the top so it doesn't extend above the first icon */
    bottom: 25px; /* Shortened from the bottom */
    width: 2px;
    background-color: #ddd;
}

.pt-5d07358d-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pt-5d07358d-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.pt-5d07358d-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.pt-5d07358d-step-icon i,
.pt-5d07358d-step-icon svg {
    font-size: 20px;
    fill: currentColor;
    width: 1em;
    height: 1em;
}

.pt-5d07358d-step-content {
    background: #f9f9f9;
    padding: 15px 20px;
    border-radius: 8px;
    flex-grow: 1;
    cursor: default;
}

.pt-5d07358d-step-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.pt-5d07358d-step-desc-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.pt-5d07358d-step-desc {
    margin: 0;
    color: #666;
}

.pt-5d07358d-step:hover .pt-5d07358d-step-desc-wrapper {
    max-height: 200px;
    margin-top: 10px;
}