.timings-page{
    max-width:1200px;
    margin:auto;
    padding:140px 20px 80px;
}

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

.page-header h1{
    font-size:clamp(2rem,5vw,3.5rem);
    color:#15396a;
    margin-bottom:10px;
}

.page-header p{
    color:#666;
}

.timing-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-bottom:40px;
}

.timing-card{
    background:white;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.timing-card h2{
    color:#15396a;
    margin-bottom:12px;
}

.timing-card p{
    font-size:1.1rem;
    font-weight:600;
}

.table-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.table-card h2{
    background:#15396a;
    color:white;
    padding:20px;
    margin:0;
}

.table-card table{
    width:100%;
    border-collapse:collapse;
}

.table-card th{
    background:#f3f4f6;
}

.table-card th,
.table-card td{
    padding:16px;
    border-bottom:1px solid #e5e7eb;
    text-align:left;
}

@media(max-width:768px){

    .timings-page{
        padding:120px 15px 60px;
    }

    .table-card{
        overflow-x:auto;
    }

    .table-card table{
        min-width:500px;
    }

}