body{
    background:#bcc3cb !important;
}
/* ----------------------------------HOME PAGE NAVIGATION----------------------------------- */
header{
    background:#c62828;
}
nav{
    max-width:1200px;
    margin:auto;
}
.site-header{
    position:relative;
    top:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    z-index:1000;
}
.site-header .container{
    max-width:1200px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    text-decoration:none;
    font-size:1.8rem;
    font-weight:800;
}
.logo-red{
    color:#D62828;
}
.logo-blue{
    color:#123A6F;
}
.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}
.nav-links a{
    text-decoration:none;
    color:#123A6F;
    font-weight:600;
    transition:.3s;
}
.nav-links a:hover,
.nav-links a.active{
    color:#D62828;
}
.nav-button{
    background:#D62828;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    font-weight:700;
    transition:.3s;
}
.nav-button:hover{
    background:#b71c1c;
}
/* ===================================OUR STORY=================================== */
.our-story{
    padding:100px 8%;
    background:#bcc3cb;
}
.story-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:60px;
    align-items:center;
}
.story-text h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:25px;
}
.story-text p{
    font-size:1.1rem;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}
.story-card{
    background:#f7f8fa;
    padding:45px;
    border-radius:20px;
    border-top:6px solid #D62828;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
}
.story-icon{
    font-size:4rem;
    margin-bottom:20px;
}
.story-card h3{
    color:#123A6F;
    margin-bottom:20px;
}
.story-card p{
    color:#555;
    line-height:1.8;
}
@media(max-width:900px){
.story-container{
grid-template-columns:1fr;
}
}
/* ===================================MEET YOUR INSTRUCTOR=================================== */
.meet-instructor{
    padding:100px 8%;
    background:#bcc3cb;
}
.instructor-container{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:275px 1fr;
    gap:50px;
    align-items:center;
}
.instructor-image{
    display:flex;
    justify-content:center;
    align-items:center;
}
.instructor-photo{
    width:100%;
    max-width:350px;
    height:auto;
    display:block;
    border-radius:20px;
    border-top:6px solid #D62828;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}
.instructor-content{
    text-align:left;
}
.title{
    font-weight:bold;
    color:#123A6F;
    margin-bottom:30px;
}
.instructor-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
}
.instructor-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}
.highlight{
    background:white;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}
@media(max-width:900px){
.instructor-container{
grid-template-columns:1fr;
}
.instructor-highlights{
grid-template-columns:1fr;
}
}
/* ===================================EXPERIENCE SECTION=================================== */
.experience-section{
    padding:100px 8%;
    background:#bcc3cb;
    text-align:center;
}
.experience-section h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.experience-intro{
    max-width:850px;
    margin:0 auto 60px;
    color:#555;
    line-height:1.8;
    font-size:1.1rem;
}
.experience-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.experience-card{
    background:#f8f9fb;
    border-radius:18px;
    padding:40px 30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid #D62828;
}
.experience-card:hover{
    transform:translateY(-8px);
}
.experience-icon{
    font-size:3rem;
    margin-bottom:20px;
}
.experience-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.experience-card p{
    color:#555;
    line-height:1.8;
}
/* ===================================CORE VALUES=================================== */
.values-section{
    padding:100px 8%;
    background:#bcc3cb;
    text-align:center;
}
.values-section h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.values-intro{
    max-width:850px;
    margin:0 auto 60px;
    color:#555;
    line-height:1.8;
    font-size:1.1rem;
}
.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.value-card{
    background:#ffffff;
    border-radius:18px;
    padding:40px 30px;
    border-top:5px solid #D62828;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}
.value-card:hover{
    transform:translateY(-8px);
}
.value-icon{
    font-size:3rem;
    margin-bottom:20px;
}
.value-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.value-card p{
    color:#555;
    line-height:1.8;
}
/* ===================================SERVICE AREA=================================== */
.service-area{
    padding:100px 8%;
    background:#bcc3cb;
    text-align:center;
}
.service-area h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.service-intro{
    max-width:900px;
    margin:0 auto 60px;
    color:#555;
    line-height:1.8;
    font-size:1.1rem;
}
.states-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.state-card{
    background:#f8f9fb;
    border-radius:18px;
    padding:35px 25px;
    border-top:5px solid #D62828;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.state-card:hover{
    transform:translateY(-8px);
}
.state-icon{
    font-size:3rem;
    margin-bottom:18px;
}
.state-card h3{
    color:#123A6F;
    margin-bottom:12px;
}
.state-card p{
    color:#555;
    line-height:1.7;
}
/* ===================================COMMUNITY COMMITMENT=================================== */
.community-section{
    padding:100px 8%;
    background:#c7ccd3;
    text-align:center;
}
.community-section h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.community-intro{
    max-width:900px;
    margin:0 auto 60px;
    font-size:1.1rem;
    color:#555;
    line-height:1.8;
}
.community-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.community-card{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    border-top:5px solid #D62828;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.community-card:hover{
    transform:translateY(-8px);
}
.community-icon{
    font-size:3rem;
    margin-bottom:20px;
}
.community-card h3{
    color:#123A6F;
    margin-bottom:15px;
}
.community-card p{
    color:#555;
    line-height:1.8;
}
/* ===================================ABOUT CTA=================================== */
.about-cta{
    padding:110px 8%;
    background:linear-gradient(135deg,#123A6F,#0F2E57);
    color:white;
    text-align:center;
}
.cta-container{
    max-width:900px;
    margin:auto;
}
.about-cta h2{
    font-size:3rem;
    margin-bottom:25px;
}
.about-cta p{
    font-size:1.15rem;
    line-height:1.9;
    margin-bottom:45px;
}
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.cta-primary,
.cta-secondary{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}
.cta-primary{
    background:#D62828;
    color:white;
}
.cta-primary:hover{
    background:#B71C1C;
    transform:translateY(-3px);
}
.cta-secondary{
    background:white;
    color:#123A6F;
}
.cta-secondary:hover{
    background:#F2F2F2;
    transform:translateY(-3px);
}
/* ===================================FAQ SECTION=================================== */
.faq-section{
    padding:100px 8%;
    background:#c7ccd3;
    text-align:center;
}
.faq-section h2{
    font-size:2.8rem;
    color:#123A6F;
    margin-bottom:20px;
}
.faq-intro{
    max-width:800px;
    margin:0 auto 60px;
    color:#555;
    font-size:1.1rem;
    line-height:1.8;
}
.faq-container{
    max-width:1000px;
    margin:auto;
    display:grid;
    gap:25px;
}
.faq-item{
    background:#ffffff;
    padding:30px;
    border-left:6px solid #D62828;
    border-radius:16px;
    text-align:left;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.faq-item h3{
    color:#123A6F;
    margin-bottom:12px;
}
.faq-item p{
    color:#555;
    line-height:1.8;
}
/* =========================FOOTER========================= */
.site-footer{
    background:#123A6F;
    color:#ffffff;
    padding:70px 8% 25px;
}
.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
}
.footer-column h3{
    color:#ffffff;
    margin-bottom:20px;
    font-size:1.3rem;
}
.footer-column p{
    color:#d8d8d8;
    line-height:1.8;
    margin-bottom:10px;
}
.footer-column a{
    display:block;
    color:#d8d8d8;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}
.footer-column a:hover{
    color:#ffffff;
}
.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.2);
    color:#cfcfcf;
    font-size:.95rem;
}
/* ===================================INSTRUCTOR PHOTO=================================== */
.instructor-photo{
    width:100%;
    max-width:350px;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius:20px;
    border-top:6px solid #D62828;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}
.instructor-image{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}
@media(max-width:650px){
    .instructor-container{
        grid-template-columns:1fr;
    }
    .instructor-highlights{
        grid-template-columns:1fr;
    }
    .instructor-content{
        text-align:center;
    }
}