*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:#1f2b44;
line-height:1.8;
background:#ffffff;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.site-header{
background:#ffffff;
border-bottom:1px solid #e5e5e5;
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.site-logo{
height:72px;
}

.nav-menu{
display:flex;
list-style:none;
gap:28px;
align-items:center;
}

.nav-menu a{
text-decoration:none;
color:#08234f;
font-weight:600;
}

.nav-menu a:hover{
color:#d8a028;
}

.hero{
background:#08234f;
color:white;
padding:120px 0;
text-align:center;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero-subtitle{
font-size:1.15rem;
max-width:700px;
margin:auto;
}

.btn-primary{
display:inline-block;
margin-top:35px;
padding:14px 28px;
background:#d8a028;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.section{
padding:80px 0;
}

.light-bg{
background:#f7f8fb;
}

.section-heading{
margin-bottom:30px;
}

.section-heading h2{
color:#08234f;
font-size:2rem;
}

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

.card{
background:white;
padding:30px;
border:1px solid #ececec;
box-shadow:0 2px 12px rgba(0,0,0,.05);
border-radius:10px;
}

.card h3{
color:#08234f;
margin-bottom:12px;
}

.founder-grid{
display:grid;
grid-template-columns:300px 1fr;
gap:50px;
align-items:center;
}

.founder-photo{
width:100%;
max-width:280px;
border-radius:50%;
}

blockquote{
font-size:1.4rem;
font-style:italic;
color:#08234f;
}

footer{
    background:#08234f;
    color:white;
    padding:60px 0;
    text-align:center;
    border-top:3px solid #d8a028;
}

.footer-logo{
width:160px;
margin-bottom:20px;
}

.text-link{
display:inline-block;
margin-top:20px;
font-weight:bold;
color:#08234f;
text-decoration:none;
}

@media(max-width:768px){

.nav-container{
flex-direction:column;
}

.nav-menu{
flex-wrap:wrap;
justify-content:center;
margin-top:15px;
}

.hero h1{
font-size:2.1rem;
}

.founder-grid{
grid-template-columns:1fr;
text-align:center;
}

.site-logo{
height:56px;
}

}
.cta-box p{
    max-width:700px;
    margin:0 auto 25px auto;
}
/* =====================================
   INNER PAGE HEROES
===================================== */

.page-hero{
    background:#08234f;
    color:#ffffff;
    text-align:center;
    padding:90px 0;
}

.page-hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.page-hero p{
    font-size:1.15rem;
    max-width:700px;
    margin:0 auto;
}

/* =====================================
   INNER PAGE CONTENT
===================================== */

.section .container{
    max-width:900px;
}

.section h2{
    color:#08234f;
    margin-bottom:25px;
    font-size:2rem;
}

.section p{
    margin-bottom:20px;
    font-size:1.05rem;
}

/* =====================================
   CTA SECTION
===================================== */

.cta-box{
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.cta-box h2{
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:0 auto 25px auto;
}

/* =====================================
   BUTTON IMPROVEMENTS
===================================== */

.btn-primary:hover{
    background:#c28d1f;
    transition:.2s ease;
}

/* =====================================
   OPTIONAL FEATURE IMAGE
===================================== */

.mk-banner{
    width:100%;
}

.mk-banner img{
    width:100%;
    display:block;
    max-height:500px;
    object-fit:cover;
}

/* =====================================
   FOOTER LOGO
===================================== */

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .page-hero{
        padding:70px 20px;
    }

    .page-hero h1{
        font-size:2.2rem;
    }

    .section h2{
        font-size:1.7rem;
    }

}