/* Shared styles across all pages */
body {
    font-family: 'Inter', sans-serif;
    color: #1a202c;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Timeline styling */
.timeline {
    position: relative;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 2px solid #e2e8f0;
}

.timeline-step {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #64748b;
}

.timeline-step.completed .timeline-icon {
    background-color: #dcfce7;
    border-color: #22c55e;
    color: #22c55e;
}

.timeline-step.active .timeline-icon {
    background-color: #fef9c3;
    border-color: #eab308;
    color: #eab308;
}

.timeline-content {
    padding-left: 1rem;
}

/* Add some transitions for interactive elements */
a, button {
    transition: all 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF0000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
}