
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:#0b1f33;color:#eef3f8}
.container{width:90%;max-width:1100px;margin:auto}
.header{background:#081625;padding:15px 0;border-bottom:1px solid #1e3a5f}
.nav-wrap{display:flex;justify-content:space-between;align-items:center}
nav a{margin:0 10px;color:#cde;text-decoration:none;font-weight:bold}
nav a.active{color:#4fd1c5}
.logo{height:80px}
.small-logo{height:60px;margin-bottom:10px}
.brand{margin-left:10px;font-weight:bold}
.container-grid {
  display: grid;
  place-items: center; /* Centers vertically and horizontally */
  height: 200px;       /* Example height for visibility */
  border: 1px solid black;
}
.hero{display:flex;justify-content:space-between;align-items:center;padding:60px 0}
.hero-text{max-width:500px}
.btn{display:inline-block;margin-top:15px;padding:12px 18px;background:#4fd1c5;color:#012;text-decoration:none;border-radius:6px;font-weight:bold}
.section{padding:60px 0}
.cards{display:flex;gap:20px;flex-wrap:wrap}
.card{background:#112b45;padding:25px;border-radius:10px;flex:1;min-width:240px;text-align:center}
.icon{width:50px;height:50px;background:#4fd1c5;border-radius:12px;margin:0 auto 15px}
.footer{background:#081625;padding:30px 0;margin-top:60px}
.foot-grid{display:flex;justify-content:space-between;align-items:center}
.muted{color:#9fb3c8;font-size:14px}
.graphic-box{width:420px;height:280px;background:linear-gradient(135deg,#123a5a,#0b1f33);border-radius:16px;display:flex;align-items:center;justify-content:center}
.graphic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.g{width:40px;height:40px;background:#4fd1c5;border-radius:8px;opacity:.8}
.steps{line-height:2}
@media(max-width:900px){.hero{flex-direction:column;text-align:center}.graphic-box{margin-top:30px}}


/* Logo refinements */
.logo{height:120px}
.small-logo{height:80px}

/* Hero background glow to match logo */
.hero{
  background: radial-gradient(circle at 70% 40%, rgba(79,209,197,0.15), transparent 60%);
}
