.btn-wide-gradient {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #8a2be2 0%, #ff69b4 100%);
    color: var(--light);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    border: none;
    font-size: 1.2rem;
}

.btn-wide-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
    color: var(--light);
}

/* Horizontal Timeline Adjustments */
.horizontal-timeline {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 2rem 0;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2 0%, #ff69b4 100%);
    z-index: 1;
}

.timeline-point {
    position: relative;
    z-index: 2;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin-top: 30px;
    transition: all var(--transition-normal);
}

.timeline-point:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, #8a2be2 0%, #ff69b4 100%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.3);
}

.timeline-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.timeline-content {
    text-align: center;
}

.timeline-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.timeline-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.timeline-stat-label {
    font-size: 0.9rem;
    color: var(--dark-muted);
}

@media (max-width: 992px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-container:before {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }
    
    .timeline-point {
        width: 80%;
        margin: 2rem 0;
    }
    
    .timeline-point:before {
        top: 50%;
        left: -30px;
        transform: translateY(-50%);
    }
}
