 .container {
    max-width: 1200px;
    margin: 0 auto;

    /* padding: 100px 20px; */
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00d9ff;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title-chart {
    font-size: 36px;
    font-weight: 800;
    color: #ecc362;
    margin-bottom: 20px;
}

.process-container {
    position: relative;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Add this */
    margin-bottom: 120px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.process-step .content:hover {
    transform: translateY(-6px) scale(1.02);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.process-step:nth-child(1) { transition-delay: 0ms; }
.process-step:nth-child(2) { transition-delay: 180ms; }
.process-step:nth-child(3) { transition-delay: 360ms; }
.process-step:nth-child(4) { transition-delay: 540ms; }

.icon-container {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


.icon {
    font-size: 48px;
}

.icon-whiteshadow {
    font-size: 48px;
    /*filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8)) drop-shadow(0 0 20px rgba(0, 217, 255, 0.6)) drop-shadow(0 0 30px rgba(0, 217, 255, 0.4));*/
}

/* Vertical connecting line */


@media (max-width: 480px) {
    .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -27px;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient( to bottom, #ecc362 0%, #ecc362 100% );
    z-index: 0;
}
}
@media (min-width: 481px) and (max-width: 767px) {
    .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -80px;
    transform: translateX(-50%);
    width: 2px;
    height: 80px;
    background: linear-gradient( to bottom, #ecc362 0%, #ecc362 100% );
    z-index: 0;
}
}
@media (min-width: 768px) and (max-width: 991px) {
    .process-step:not(:last-child) .icon-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 2px;
    height: 180px;
    background: linear-gradient( to bottom, #ecc362 0%, #ecc362 100% );
    z-index: 1;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
    .process-step:not(:last-child) .icon-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 2px;
    height: 180px;
    /*background: linear-gradient( to bottom, #00d9ff 0%, rgba(0, 217, 255, 0.5) 100% );*/
    background: linear-gradient( to bottom, #ecc362 0%, #ecc362 100% );
    z-index: 1;
}
}
@media (min-width: 820px) {
    .process-step:not(:last-child) .icon-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 2px;
    height: 180px;
    /*background: linear-gradient( to bottom, #00d9ff 0%, rgba(0, 217, 255, 0.5) 100% );*/
    background: linear-gradient( to bottom, #ecc362 0%, #ecc362 100% );
    z-index: 1;
}
} 

.content {
    flex: 1;
    padding-left: 50px;
    padding-top: 5px;
    position: relative;
}

.step-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-description {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 700px;
}

/* Extra spacing at bottom for scroll testing */
.spacer {
    height: 100vh;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .section-title-chart {
        font-size: 36px;
    }

    .process-container {
        padding: 0 20px;
        margin-top: 60px;
    }

    .process-step {
        margin-bottom: 80px;
        flex-direction: column;
        text-align: center;
    }

    .icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px auto;
    }

    .icon, .icon-whiteshadow {
        font-size: 40px;
    }

    .process-step:not(:last-child) .content::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, #ecc362 0%, #ecc362 100%);
        margin-top: 20px;
        display: none;
    }

    .content {
        padding-left: 0;
        padding-top: 0;
        position: relative;
    }

    .step-title {
        font-size: 26px;
    }

    .step-description {
        font-size: 16px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title-chart {
        font-size: 28px;
    }

    .process-container {
        padding: 0 15px;
        margin-top: 40px;
    }

    .process-step {
        margin-bottom: 60px;
    }

    .icon-container {
        width: 50px;
        height: 50px;
    }

    .icon, .icon-whiteshadow {
        font-size: 32px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-description {
        font-size: 14px;
    }
}