body{
margin:0;
font-family:Arial, sans-serif;
background:#f7f9fc;
color:#333;
}

/* NAVIGATION BAR */

nav{
background:white;
padding:12px 40px;
box-shadow:0 2px 6px rgba(0,0,0,.08);
display:flex;
align-items:center;
justify-content:space-between;
}

/* MENU CONTAINER */

.menu-container{
position:relative;
margin-left:-10px;
}

/* HAMBURGER ICON */

.menu-icon{
display:flex;
flex-direction:column;
gap:5px;
cursor:pointer;
padding:10px 12px;
border-radius:6px;
transition:background .2s ease;
}

.menu-icon:hover{
background:#FFF3ED;
}

/* HAMBURGER BARS */

.menu-icon span{
display:block;
width:26px;
height:3px;
background:#333;
border-radius:2px;
transition:all .3s ease;
}

/* X TRANSFORM */

.menu-container:hover .menu-icon span:nth-child(1){
transform:translateY(8px) rotate(45deg);
}

.menu-container:hover .menu-icon span:nth-child(2){
opacity:0;
}

.menu-container:hover .menu-icon span:nth-child(3){
transform:translateY(-8px) rotate(-45deg);
}

/* DROPDOWN */

.menu-dropdown{
opacity:0;
transform:translateY(-10px);
pointer-events:none;

position:absolute;
background:white;
box-shadow:0 6px 16px rgba(0,0,0,.08);
padding:8px 0;
top:100%;
left:0;
min-width:200px;
border-radius:10px;

transition:opacity .35s ease, transform .35s ease;
transition-delay:.15s;
}

.menu-container:hover .menu-dropdown{
opacity:1;
transform:translateY(0);
pointer-events:auto;
transition-delay:0s;
}

/* MENU LINKS */

.menu-dropdown a{
display:block;
padding:12px 20px;
text-decoration:none;
color:#333;
font-weight:600;
transition:background .2s ease, color .2s ease;
}

.menu-dropdown a:hover{
background:#FFF3ED;
color:#F26A3D;
}

/* LOGO */

.logo img{
height:60px;
}

/* HERO SECTION */

.hero{
height:70vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:linear-gradient(135deg,#3E7F80,#F26A3D);
color:white;

margin-top:0;
padding:60px 40px 40px 40px;
}

.hero h1{
font-size:52px;
margin-bottom:15px;
}

.full-banner{
width:100vw;
margin-left:calc(-50vw + 50%);

background:rgba(0, 45, 65, 0.25);
padding:14px 0;

display:flex;
justify-content:center;
align-items:center;

backdrop-filter:blur(6px);
-webkit-backdrop-filter:blur(6px);

border-bottom:1px solid rgba(255,255,255,0.2);

box-shadow:0 4px 12px rgba(0,0,0,0.2);

animation:fadeInUp 0.8s ease;
}

.full-banner h1{
margin:0;
color:white;
font-size:52px;
letter-spacing:1px;
text-shadow:0 2px 8px rgba(0,0,0,0.3);
}

.subhead{
font-size:22px;
font-weight:400;
margin-bottom:20px;
opacity:.9;
}

.hero p{
font-size:20px;
max-width:700px;
line-height:1.6;
}

.cta{
margin-top:25px;
padding:14px 28px;
font-size:16px;
font-weight:600;
border:none;
border-radius:8px;
background:white;
color:#3E7F80;
cursor:pointer;
transition:all .25s ease;
}

.cta:hover{
background:#FFF3ED;
color:#F26A3D;
}

/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#e9edf4;
font-size:14px;
}

/* CONTENT PAGE STYLING */

.page{
max-width:900px;
margin:auto;
padding:80px 30px;
}

/* PAGE TITLES */

.page h1{
font-size:42px;
color:#3E7F80;
margin-bottom:12px;
position:relative;
}

.page h1::after{
content:"";
display:block;
width:70px;
height:4px;
background:#F26A3D;
margin-top:12px;
border-radius:2px;
}

/* TEXT */

.page p{
font-size:18px;
line-height:1.7;
margin-bottom:20px;
}

/* LISTS */

.page ul{
line-height:1.7;
font-size:18px;
}

/* SUBTLE SECTION CARD */

.page-card{
background:#F7FAFA;
padding:40px;
border-radius:12px;
box-shadow:0 6px 14px rgba(0,0,0,.05);
}

.problem{
padding:80px 30px;  /* increased from 60 */
text-align:center;
background:white;
}

.problem h2{
font-size:32px;
color:#3E7F80;
margin-bottom:15px;
}

.problem ul{
list-style:none;
padding:0;
margin-top:20px;
}

.problem li{
margin:12px 0;
font-size:18px;
font-weight:500;
}

@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}
