/* Step 18.5: How It Works Timeline */
.how-it-works-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
    padding: 0 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.timeline-connector {
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #FF1493 0%, #FF69B4 100%);
    margin-left: 28px;
    border-radius: 2px;
}