/* Extracted from index.html */
.journey-grid {
                    display: grid;
                    grid-template-columns: repeat(5, 1fr);
                    gap: 1.5rem;
                    position: relative;
                    margin-top: 4rem;
                }
                .journey-line {
                    position: absolute;
                    top: 30px;
                    left: 10%;
                    right: 10%;
                    height: 2px;
                    background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
                    z-index: 0;
                }
                .journey-step {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                    position: relative;
                    z-index: 1;
                }
                .journey-step .timeline-number {
                    margin-bottom: 1.5rem;
                    width: 60px;
                    height: 60px;
                    font-size: 1.25rem;
                    background: var(--bg-dark);
                    border: 2px solid var(--brand-secondary);
                    box-shadow: 0 0 0 8px var(--bg-dark);
                    transition: all 0.3s ease;
                }
                .journey-step:hover .timeline-number {
                    transform: scale(1.1);
                    background: var(--brand-secondary);
                    color: var(--bg-dark);
                }
                @media (max-width: 992px) {
                    .journey-grid {
                        grid-template-columns: 1fr;
                        gap: 3rem;
                    }
                    .journey-line {
                        width: 2px;
                        height: 100%;
                        left: 50%;
                        top: 0;
                        bottom: 0;
                        right: auto;
                        transform: translateX(-50%);
                        background: linear-gradient(180deg, transparent, var(--brand-secondary), transparent);
                    }
                }