/* Timeline styles */
.process-timeline {
    height: min-content;
    max-width: 1200px;
    position: relative;
    margin: 40px auto;
    left: auto !important;
    padding-bottom: 300px;
}

.timeline-track {
    position: relative;
    height: 4px;
    background: white;
}

.timeline-progress {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: var(--primary-accent);
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.timeline-step {
    aspect-ratio: 2 / 1;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition:
        background 0.3s,
        color 0.3s;
}

.timeline-step.active {
    background: #f9b384;
    color: #fff;
}

h1.process-title {
    margin-bottom: 0;
    line-height: 1.6;
}

#timeline-text {
    height: max-content;
}

p.process-subtitle {
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
}

i {
    transform: scale(1.5, 1.5);
}

@media (max-width: 768px) {
    .work-process h1 {
        font-size: 2.5rem;
    }

    .work-process h2 {
        font-size: 1.5rem;
    }

    .process-timeline {
        padding-top: 300px;
    }
}