body{
    background:#5a8cc6;
}
.epityxontes_title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #02275c;
    letter-spacing:1px;
    position:relative;
    margin-top: 50px;
}
.epityxontes_title::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:linear-gradient(90deg,#4a90e2,#02275c);
    margin:15px auto 0;
    border-radius:3px;
}
.programs-section{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h1{
    font-size:46px;
    color:#02275c;
    margin-bottom:15px;
}

.section-header p{
    color:#02275c;
    font-size:18px;
}

.years-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.year-card{
    background:#02275c;
    color:white;
    text-decoration:none;
    padding:25px;
    border-radius:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.year-card span{
    font-size:22px;
    font-weight:600;
}

.year-card:hover{
    transform:translateY(-5px);
}

.year-card i{
    font-size:20px;
}

.back-button-wrapper{
    max-width:1200px;
    margin:20px auto 60px;
    padding:0 20px;
}

.btn-link{
    display:inline-block;
    padding:10px 20px;
    background:#02275c;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
}

.btn-link:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

    .section-header h1{
        font-size:36px;
    }

    .year-card{
        padding:20px;
    }

    .year-card span{
        font-size:18px;
    }
}