body{
    margin:0;
    padding:0;
    font-family:"Contrail One", sans-serif;
    background:rgb(240,240,240);
    color:black;
}
.schedule-hero{
    min-height:52vh;
    background:linear-gradient(to right, rgba(0,0,0,0.92), rgba(40,40,40,0.9)), url("/images/mar080623_944_DimitriusSouza_Seminar_Upper.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 8%;
}
.eyebrow{
    margin:0 0 12px 0;
    letter-spacing:4px;
    text-transform:uppercase;
    color:rgb(205,205,205);
    font-size:15px;
}
.eyebrow.dark{
    color:rgb(90,90,90);
}
.schedule-hero h1{
    font-size:62px;
    line-height:1;
    margin:0;
    max-width:760px;
}
.schedule-hero p{
    color:rgb(225,225,225);
    font-size:21px;
    max-width:620px;
}
.schedule-hero a{
    width:max-content;
    margin-top:20px;
    text-decoration:none;
    background:white;
    color:black;
    border:1px solid white;
    padding:15px 26px;
    transition:0.4s ease;
}
.schedule-hero a:hover{
    background:black;
    color:white;
}
.schedule-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:30px;
    padding:80px 8%;
}
.schedule-sidebar{
    background:black;
    color:white;
    padding:35px;
    align-self:start;
    position:sticky;
    top:20px;
}
.schedule-sidebar h2,
.table-heading h2,
.trial-info h2{
    font-size:38px;
    margin:0 0 25px 0;
}
.class-type{
    border-top:1px solid rgb(95,95,95);
    padding:22px 0;
}
.class-type h3{
    margin:0 0 8px 0;
    font-size:25px;
}
.class-type p{
    color:rgb(205,205,205);
    line-height:1.5;
    margin:0;
}
.schedule-table-section{
    background:white;
    padding:35px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.table-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:25px;
}
.table-heading p{
    color:rgb(85,85,85);
    font-size:18px;
}
.table-wrap{
    overflow-x:auto;
}
table{
    width:100%;
    border-collapse:collapse;
    min-width:760px;
}
th{
    background:black;
    color:white;
    padding:18px;
    text-align:left;
    font-size:19px;
}
td{
    padding:18px;
    border-bottom:1px solid rgb(220,220,220);
    font-size:18px;
}
tr:nth-child(even) td{
    background:rgb(242,242,242);
}
tr:hover td{
    background:rgb(225,225,225);
}
.trial-info{
    padding:80px 8%;
    background:white;
}
.trial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:30px;
}
.trial-grid article{
    padding:32px;
    background:rgb(235,235,235);
    border-left:8px solid black;
}
.trial-grid h3{
    font-size:28px;
    margin:0 0 12px 0;
}
.trial-grid p{
    font-size:18px;
    line-height:1.5;
    color:rgb(75,75,75);
}
@media(max-width:1000px){
    .schedule-layout{
        grid-template-columns:1fr;
    }
    .schedule-sidebar{
        position:static;
    }
    .trial-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:600px){
    .schedule-hero h1{font-size:40px;}
    .schedule-layout,
    .trial-info{
        padding:55px 6%;
    }
    .table-heading{
        flex-direction:column;
        align-items:flex-start;
    }
}
