body, p{
    font-family: "Nunito", sans-serif;
    font-size: 1.3rem;
    font-weight: 200;
    line-height: 2;
}
h1,h2,h3,h4,h5,h6{
    color: #D7DFE2;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    margin-bottom: 30px;
}
.sep{
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #6C7580 0%, #D4DBE1 50%, #6C7580 100%);
}
.section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.header {
    background: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.timeline {
    position: relative;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #C3CCD2, #003460);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
}

.timeline-item {
    transform: translateX(50px);
}

.timeline-item.visible {
    transform: translateX(0);
}

.timeline-content {
    position: relative;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-dot {
    position: absolute;
    top: 50%;
    left: 38px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0071D0;
    z-index: 1;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #0071D0;
}

.timeline-content h3 {
    margin-top: 0;
    color: #2d3436;
    font-weight: 600;
    font-size: 1.5rem;
}

.timeline-content p, .timeline-content li {
    color: #636e72;
    line-height: 1.6;
    font-size: 1.2rem;
}

.timeline-day-divider {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.timeline-day-divider h2 {
    display: inline-block;
    background-color: #003460;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    font-size: 1.6rem;
    margin: 0;
}

.timeline-time {
    font-weight: bold;
    color: #0071D0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    background: #f0f7ff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

.footer {
    background: #2d3436;
    color: #dfe6e9;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 28px;
    }
    
    .timeline-day-divider {
        padding-left: 60px;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 23px;
    }
    
    .timeline-day-divider {
        padding-left: 50px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-dot {
        left: 18px;
    }
    
    .timeline-day-divider {
        padding-left: 40px;
    }
    
    .timeline-day-divider h2 {
        font-size: 1.3rem;
        padding: 10px 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 1rem;
    }
    
    .timeline-time {
        font-size: 1.1rem;
    }
}