:root{

--navy:#0c2948;
--blue:#73a5d8;
--green:#6d8a4f;
--light:#f4f7fa;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Montserrat',sans-serif;
background:var(--light);
color:#333;

}

header{

padding:90px 20px;
text-align:center;

}

.logo-main{

font-size:3.8rem;
font-weight:700;
line-height:1;

}

.lee{

color:var(--navy);

}

.fm{

color:var(--blue);

}

.logo-sub{

margin-top:12px;

letter-spacing:3px;

font-weight:600;

font-size:1rem;

color:var(--navy);

text-transform:none;

}

.logo-sub span{

color:var(--green);

}

.strapline{

    margin-top:30px;

    font-size:1.2rem;

    max-width:650px;

    margin-left:auto;
    margin-right:auto;

    line-height:1.8;

    color:#555;

    padding:0 20px;

}



.button{

display:inline-block;

margin-top:45px;

background:var(--navy);

color:white;

padding:18px 40px;

border-radius:40px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.button:hover{

background:var(--green);

}

.cards{

display:flex;

gap:30px;

justify-content:center;

padding:40px;

flex-wrap:wrap;

}

.card{

background:white;

padding:35px;

width:420px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.card h2{

margin-bottom:20px;

color:var(--navy);

}

.card p{

line-height:1.8;

}

footer{

margin-top:80px;

padding:40px;

text-align:center;

color:#777;

}


