.program-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.program-header {
    text-align: center;
    font-size: 3rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    color: #617461;
    margin-bottom: 3rem;
}

.program-timeline {
    position: relative;
    padding-left: 2rem;
}

.program-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 0;
    width: 3px;
    background: #b7c7b7;
}

.program-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.program-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #b7c7b7;
    border: 3px solid #f8f6f2;
    box-shadow: 0 0 0 3px #b7c7b7;
}

.program-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7c8a7c;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    margin-bottom: 0.5rem;
}

.program-title {
    font-size: 2rem;
    font-weight: 600;
    color: #617461;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    margin-bottom: 0.5rem;
}

.program-description {
    font-size: 1.2rem;
    color: #617461;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
}

@media (max-width: 768px) {
    .program-container {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .program-timeline::before {
        left: 0px;
    }
    
    .program-header {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .program-timeline {
        padding-left: 1.5rem;
    }
    
    .program-item {
        padding-left: 1.5rem;
    }
    
    .program-time {
        font-size: 1.2rem;
    }
    
    .program-title {
        font-size: 1.5rem;
    }
    
    .program-description {
        font-size: 1rem;
    }
}
