body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f4f6f8;
    color:#333;
    margin:0;
}
.course-card{
    position: relative;
    z-index: 1;
    background: white;
    margin: 50px auto;
    padding: 40px;
    max-width: 1100px;
    border-radius: 20px;
    transform: none;
}
.course-header{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:35px;
}
.course-icon{
    font-size:70px;
}
.course-header h2{
    color:#123A6F;
    font-size:2.7rem;
    margin-bottom:8px;
}
.course-subtitle{
    color:#C1121F;
    font-size:1.2rem;
    font-weight:bold;
}
.course-description{
    font-size:1.15rem;
    line-height:1.8;
    margin-bottom:40px;
}
.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.course-box{
    background:#F8FAFC;
    border-top:6px solid #C1121F;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.course-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.course-box h3{
    color:#123A6F;
    font-size:1.5rem;
    margin-bottom:20px;
    text-align:center;
}
.course-box ul{
    list-style:none;
    padding:0;
    margin:0;
}
.course-box li{
    padding:12px 0;
    border-bottom:1px solid #E6E6E6;
    color:#555;
    font-size:1.05rem;
}
.course-box li:last-child{
    border-bottom:none;
}
.page-header{
    background:#123A6F;
    color:white;
    padding:90px 20px;
    text-align:center;
}
.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}
.page-header h1{
    font-size:3rem;
    margin:20px 0;
}
.page-header p{
    font-size:1.2rem;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}
.back-button{
    display:inline-block;
    background:white;
    color:#123A6F;
    text-decoration:none;
    padding:12px 24px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}
.back-button:hover{
    background:#C1121F;
   color:white;
}
.course-overview{
    margin-top:60px;
}
.course-overview h2{
    color:#123A6F;
    font-size:2.2rem;
    margin-bottom:20px;
}
.course-overview>p{
    font-size:1.1rem;
    line-height:1.8;
    margin-bottom:40px;
}
.overview-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}
.overview-card{
    background:#F5F7FA;
    padding:30px;
    border-left:6px solid #C1121F;
    border-radius:16px;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}
.overview-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.overview-card p{
    line-height:1.7;
    color:#555;
}
.skills-section{
    margin:80px auto;
}
.skills-section h2{
    text-align:center;
    color:#123A6F;
    font-size:2.4rem;
    margin-bottom:40px;
}
.skills-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.skill-card{
    background:white;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.skill-card:hover{
    transform:translateY(-8px);
}
.skill-icon{
    font-size:60px;
    margin-bottom:20px;
}
.skill-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.skill-card p{
    color:#555;
    line-height:1.7;
}
.audience-section{
    margin:90px auto;
}
.audience-section h2{
    text-align:center;
    color:#123A6F;
    font-size:2.5rem;
    margin-bottom:20px;
}
.audience-intro{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
    line-height:1.8;
    color:#555;
    font-size:1.1rem;
}
.audience-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}
.audience-card{
    background:#F8F9FB;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.audience-card:hover{
    transform:translateY(-8px);
}
.audience-icon{
    font-size:55px;
    margin-bottom:18px;
}
.audience-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.audience-card p{
    color:#555;
    line-height:1.7;
}
.why-vitalresponse{
    margin:100px auto;
}
.why-vitalresponse h2{
    text-align:center;
    color:#123A6F;
    font-size:2.6rem;
    margin-bottom:20px;
}
.why-intro{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
    font-size:1.15rem;
    line-height:1.8;
    color:#555;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.why-item{
    background:white;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.why-item:hover{
    transform:translateY(-8px);
}
.why-item .why-icon{
    font-size:55px;
    margin-bottom:18px;
}
.why-item h3{
    color:#123A6F;
    margin-bottom:15px;
}
.why-item p{
    color:#555;
    line-height:1.7;
}
.course-cta{
    background:linear-gradient(135deg,#123A6F,#0D2F57);
    color:white;
    text-align:center;
    padding:80px 40px;
    border-radius:24px;
    margin:100px auto;
}
.course-cta h2{
    font-size:2.8rem;
    margin-bottom:20px;
}
.course-cta p{
    max-width:800px;
    margin:0 auto 40px;
    font-size:1.2rem;
    line-height:1.8;
}
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.cta-button{
    display:inline-block;
    background:#C1121F;
    color:white;
    text-decoration:none;
    padding:18px 36px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}
.cta-button:hover{
    background:#99131B;
    transform:translateY(-3px);
}
.secondary-button{
    background:white;
    color:#123A6F;
}
.secondary-button:hover{
    background:#E8E8E8;
}
.course-details{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin:70px auto;
}
.detail-box{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:6px solid #C1121F;
}
.detail-box h3{
    color:#123A6F;
    margin-bottom:20px;
    font-size:1.5rem;
}
.detail-box ul{
    list-style:none;
    padding:0;
}
.detail-box li{
    padding:10px 0;
    border-bottom:1px solid #E5E5E5;
    color:#555;
}
.detail-box li:last-child{
    border-bottom:none;
}
/* ===================================CLASSES PAGE INTRO=================================== */
.classes-intro{
    background:#c7ccd3;
    padding:70px 30px 55px;
    text-align:center;
}
.classes-intro-container{
    max-width:900px;
    margin:0 auto;
}
/* Red accent above heading */
.intro-accent{
    width:80px;
    height:6px;
    background:#C1121F;
    border-radius:10px;
    margin:0 auto 25px;
}
/* Dark blue Training Programs box */
.classes-intro h1{
    display:inline-block;
    background:#123A6F;
    color:#ffffff;
    font-size:3rem;
    font-weight:800;
    padding:18px 45px;
    margin:0 auto 30px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}
/* Introduction wording */
.classes-intro p{
    max-width:850px;
    margin:0 auto 18px;
    color:#000000;
    font-size:1.15rem;
    line-height:1.8;
}
/* Mobile */
@media(max-width:700px){
    .classes-intro{
        padding:55px 20px 45px;
    }
    .classes-intro h1{
        font-size:2.2rem;
        padding:15px 30px;
    }
    .classes-intro p{
        font-size:1rem;
    }
}
/* ===================================OTHER WAYS TO REACH US=================================== */
.contact-options{
    background:#c7ccd3;
    padding:20px 8% 100px;
    text-align:center;
}
.contact-options-container{
    max-width:1100px;
    margin:0 auto;
}
.contact-options h2{
    color:#123A6F;
    font-size:2.6rem;
    margin-bottom:15px;
}
.contact-options-intro{
    max-width:700px;
    margin:0 auto 45px;
    color:#000000;
    font-size:1.1rem;
    line-height:1.8;
}
.contact-options-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.contact-option-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:18px;
    border-top:5px solid #C1121F;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}
.contact-option-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0,0,0,.15);
}
.contact-option-icon{
    font-size:3rem;
    margin-bottom:18px;
}
.contact-option-card h3{
    color:#123A6F;
    font-size:1.5rem;
    margin-bottom:15px;
}
.contact-option-card p{
    color:#000000;
    line-height:1.7;
    margin-bottom:22px;
}
.contact-option-link{
    color:#C1121F;
    text-decoration:none;
    font-weight:700;
    font-size:1.05rem;
}
.contact-option-link:hover{
    color:#123A6F;
}
.service-states{
    color:#123A6F;
    font-weight:800;
    font-size:1.15rem;
    letter-spacing:1px;
}
/* ===================================CONTACT OPTIONS MOBILE=================================== */
@media(max-width:850px){
    .contact-options-grid{
        grid-template-columns:1fr;
    }
    .contact-options{
        padding:20px 20px 70px;
    }
    .contact-options h2{
        font-size:2.1rem;
    }
}
