body{
    margin:0;
    padding:0;
    font-family:"Contrail One", sans-serif;
    background:rgb(238,238,238);
    color:rgb(15,15,15);
}
main{
    overflow:hidden;
}
.about-hero{
    position:relative;
    min-height:75vh;
    background-image:linear-gradient(115deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 42%, rgba(0,0,0,0.15) 100%), url("/images/mar080623_187_DimitriusSouza_Seminar_Upper.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:70px 8%;
}
.about-hero-content{
    max-width:680px;
    color:white;
    animation:slideUp 1s ease forwards;
}
.eyebrow{
    margin:0 0 12px 0;
    letter-spacing:4px;
    text-transform:uppercase;
    color:rgb(210,210,210);
    font-size:15px;
}
.eyebrow.dark{
    color:rgb(80,80,80);
}
.about-hero h1{
    font-size:68px;
    line-height:0.95;
    margin:0;
}
.about-hero p{
    font-size:22px;
    color:rgb(230,230,230);
}
.hero-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:30px;
}
.hero-actions a,
.program-strip a{
    text-decoration:none;
    background:white;
    color:black;
    border:1px solid white;
    padding:15px 24px;
    transition:0.4s ease;
}
.hero-actions a:hover,
.program-strip a:hover{
    background:black;
    color:white;
}
.hero-actions .secondary-btn{
    background:transparent;
    color:white;
}
.hero-actions .secondary-btn:hover{
    background:white;
    color:black;
}
.intro-section{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:30px;
    padding:80px 8%;
    background:white;
}
.intro-text h2,
.values-section h2,
.program-strip h2,
.trial-info h2{
    font-size:46px;
    margin:0 0 18px 0;
}
.intro-text p,
.intro-card p,
.values-grid p,
.program-strip p,
.training-card p{
    font-size:19px;
    line-height:1.55;
    color:rgb(70,70,70);
}
.intro-card{
    background:rgb(15,15,15);
    color:white;
    padding:40px;
    border-radius:0 35px 0 35px;
    box-shadow:0 18px 35px rgba(0,0,0,0.2);
}
.intro-card h3{
    font-size:30px;
    margin:0;
}
.intro-card p{
    color:rgb(225,225,225);
}
.values-section{
    padding:80px 8%;
    background:rgb(235,235,235);
}
.values-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
    margin-top:35px;
}
.values-grid article{
    background:white;
    padding:32px;
    border-top:8px solid black;
    box-shadow:0 12px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
}
.values-grid article:hover{
    transform:translateY(-8px);
}
.values-grid span{
    color:rgb(120,120,120);
    font-size:20px;
}
.values-grid h3{
    font-size:28px;
    margin:15px 0 0 0;
}
.program-strip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    padding:55px 8%;
    background:black;
    color:white;
}
.program-strip p{
    color:rgb(210,210,210);
    max-width:760px;
}
.training-section{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:0;
}
.training-card{
    min-height:260px;
    padding:50px 35px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.training-card h3{
    font-size:34px;
    margin:0;
}
.light-card{
    background:white;
}
.dark-card{
    background:rgb(30,30,30);
    color:white;
}
.dark-card p{
    color:rgb(215,215,215);
}
@keyframes slideUp{
    from{opacity:0; transform:translateY(35px);}
    to{opacity:1; transform:translateY(0);}
}
@media(max-width:900px){
    .about-hero h1{font-size:46px;}
    .intro-section,
    .values-grid,
    .training-section{
        grid-template-columns:1fr;
    }
    .program-strip{
        flex-direction:column;
        align-items:flex-start;
    }
}
@media(max-width:560px){
    .about-hero{padding:55px 6%;}
    .about-hero h1{font-size:38px;}
    .about-hero p{font-size:18px;}
    .intro-section,
    .values-section,
    .program-strip{
        padding:55px 6%;
    }
}
