.pb-process-wrapper-6ee905cd {
    background-color: #FFFFFF;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

.pb-process-container-6ee905cd {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pb-process-header {
    text-align: left;
    margin-bottom: 60px;
}

.pb-process-label {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    color: #555555;
    margin-bottom: 16px;
}

.pb-process-headline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
}

.pb-process-timeline-6ee905cd {
    position: relative;
}

.pb-process-timeline-line {
    position: absolute;
    top: 40px; /* Align with numbers */
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E0E0E0;
    z-index: 1;
}

.pb-process-timeline-line .line-fill {
    height: 100%;
    width: 0;
    background-color: #9EC141;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.pb-process-timeline-6ee905cd.is-visible .pb-process-timeline-line .line-fill {
    width: 100%;
}

.pb-process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pb-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pb-process-timeline-6ee905cd.is-visible .pb-step-item {
    opacity: 1;
    transform: translateY(0);
}

.pb-process-timeline-6ee905cd.is-visible .pb-step-item:nth-child(1) { transition-delay: 0.1s; }
.pb-process-timeline-6ee905cd.is-visible .pb-step-item:nth-child(2) { transition-delay: 0.3s; }
.pb-process-timeline-6ee905cd.is-visible .pb-step-item:nth-child(3) { transition-delay: 0.5s; }
.pb-process-timeline-6ee905cd.is-visible .pb-step-item:nth-child(4) { transition-delay: 0.7s; }
.pb-process-timeline-6ee905cd.is-visible .pb-step-item:nth-child(5) { transition-delay: 0.9s; }

.pb-step-number {
    background-color: #FFFFFF;
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: #9EC141;
    padding-right: 15px;
    margin-bottom: 20px;
}

.pb-step-title {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1A1A1A;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.pb-step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

@media (max-width: 991px) {
    .pb-process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .pb-process-timeline-line {
        top: 0;
        bottom: 0;
        left: 25px; /* Align to center of numbers */
        width: 2px;
        height: auto;
    }

    .pb-process-timeline-line .line-fill {
        width: 100%;
        height: 0;
        transition: height 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .pb-process-timeline-6ee905cd.is-visible .pb-process-timeline-line .line-fill {
        height: 100%;
        width: 100%;
    }

    .pb-step-item {
        padding-left: 70px;
        position: relative;
    }

    .pb-step-number {
        position: absolute;
        left: 0;
        top: 0;
        padding-right: 0;
        font-size: 2.5rem;
        background: transparent;
    }
}
