
:root{
  --primary:#0A2342;
  --accent:#2EC4B6;
  --text:#111827;
  --muted:#6B7280;
  --logo-height:90px;
  --footer-bg:#0B1221;
  --footer-text:#A7B0C0;
}
*{box-sizing:border-box}
body{margin:0;font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto;color:var(--text);background:#fff}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
.container{width:min(1100px,92%);margin:0 auto}
.nav{position:sticky;top:0;backdrop-filter:blur(8px);background:rgba(255,255,255,.92);border-bottom:1px solid #eee;z-index:99}
.nav .inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--primary)}
.logo img{height:var(--logo-height);width:auto;display:block}
.menu-toggle{display:none;border:0;background:transparent;font-size:28px;line-height:1;cursor:pointer}
.links{display:flex;align-items:center;gap:18px}
.links a{font-weight:600;color:var(--text)}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;font-weight:600;border:2px solid var(--accent);color:#fff;background:var(--accent)}
.btn.secondary{background:transparent;color:var(--accent);border-color:var(--accent)}
@media(max-width:860px){
  .menu-toggle{display:block}
  .links{display:none;flex-direction:column;align-items:flex-start;padding:10px 0}
  .links.open{display:flex}
}
.hero{padding:80px 0 30px;background:linear-gradient(180deg,#F0F4FF,#fff)}
.grid{display:grid;gap:22px}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.card{padding:20px;border:1px solid #E5E7EB;border-radius:14px;background:#fff}
.section{padding:60px 0}
.section.dark {
  background: var(--primary);
  color: #fff;
}

.section.dark h2,
.section.dark h3,
.section.dark p {
  color: #fff;
}

.section.dark .card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section.dark .card h3 {
  color: #2EC4B6; /* teal accent looks great here */
}

.section.dark a {
  color: #2EC4B6;
}
.input, input, textarea{width:100%;padding:12px 14px;border:1px solid #D1D5DB;border-radius:10px;background:#fff;color:#111827}
.footer{padding:40px 0;background:var(--footer-bg);color:var(--footer-text);margin-top:40px}
.footer a{color:#D1D5DB}
