:root{
  --navy:#0F2E47;
  --teal:#00A6B8;
  --light:#F4F7FA;
  --dark:#2B2B2B;
  --mid:#6E7B85;
  --white:#FFFFFF;
  --radius:18px;
  --max:1040px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif; color:var(--dark); background:var(--light); }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.hero{
  background:linear-gradient(180deg, rgba(15,46,71,1) 0%, rgba(12,38,59,1) 100%);
  padding:42px 18px 30px 18px;
  border-bottom:8px solid var(--teal);
}
.hero__inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.brand__mark{
  width:92px;
  height:92px;
  background:var(--white);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}
.brand__mark img{ width:78px; height:78px; object-fit:contain; }
.brand__text h1{
  margin:0;
  color:var(--white);
  font-size:44px;
  letter-spacing:0.5px;
  line-height:1.05;
}
.brand__text h1 span{ font-weight:600; }
.brand__text p{
  margin:6px 0 0 0;
  color:rgba(255,255,255,0.85);
  font-size:16px;
  max-width:560px;
}
.brand__note{
  margin-top:10px !important;
  color:rgba(255,255,255,0.70) !important;
  font-size:13px !important;
  line-height:1.35;
}

.nav{
  display:flex;
  gap:10px;
  padding-top:10px;
  align-items:center;
  flex-wrap:wrap;
}
.nav > a{
  color:rgba(255,255,255,0.9);
  font-weight:700;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}
.nav > a:hover{
  background:rgba(255,255,255,0.10);
  text-decoration:none;
}

/* Dropdowns (details/summary) */
.dd{
  position:relative;
}
.dd summary{
  list-style:none;
  cursor:pointer;
  color:rgba(255,255,255,0.9);
  font-weight:700;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}
.dd summary::-webkit-details-marker{ display:none; }
.dd summary:hover{ background:rgba(255,255,255,0.10); }
.dd[open] summary{ background:rgba(255,255,255,0.14); }
.dd__panel{
  position:absolute;
  right:0;
  top:40px;
  width:240px;
  background:rgba(255,255,255,0.98);
  border:1px solid rgba(15,46,71,0.18);
  border-radius:14px;
  padding:10px;
  box-shadow:0 14px 40px rgba(0,0,0,0.18);
  display:grid;
  gap:6px;
  z-index:50;
}
.dd__panel a{
  padding:10px 10px;
  border-radius:12px;
  font-weight:650;
  font-size:13px;
  color:var(--navy);
}
.dd__panel a:hover{
  background:rgba(0,166,184,0.10);
  text-decoration:none;
}

.page{ padding:26px 18px 40px 18px; }
.section{
  max-width:var(--max);
  margin:0 auto 26px auto;
}
.section__head{
  display:flex;
  align-items:flex-end;
  gap:14px;
}
.section__head h2{
  margin:0;
  font-size:34px;
  color:var(--navy);
}
.rule{
  height:3px;
  background:rgba(15,46,71,0.15);
  flex:1;
  border-radius:999px;
  margin-bottom:8px;
}

.bullets{
  margin:14px 0 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullets li{
  padding-left:22px;
  position:relative;
  font-size:18px;
  line-height:1.35;
}
.bullets li::before{
  content:"";
  width:10px; height:10px;
  background:var(--teal);
  border-radius:999px;
  position:absolute;
  left:0; top:8px;
}
.bullets--tight{ gap:8px; margin-top:10px; }
.bullets--tight li{ font-size:16px; }

.note{
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(15,46,71,0.10);
  border-radius:18px;
  padding:16px 16px 14px 16px;
}
.note p{
  margin:0 0 10px 0;
  color:rgba(15,46,71,0.95);
  line-height:1.45;
}

.cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
  margin-top:14px;
}
.card{
  background:var(--white);
  border:2px solid rgba(15,46,71,0.75);
  border-radius:var(--radius);
  padding:18px 18px 16px 18px;
}
.card h3{
  margin:0;
  color:var(--navy);
  font-size:22px;
}
.card__role{
  margin:8px 0 12px 0;
  color:var(--mid);
  font-size:16px;
}
.card__lines{ display:grid; gap:8px; }
.line{ display:flex; gap:10px; align-items:center; font-size:16px; }
.icon{ width:22px; text-align:center; }

.cta{
  margin-top:22px;
  background:var(--teal);
  color:var(--white);
}
.cta__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cta p{ margin:0; font-size:18px; }
.cta__buttons{ display:flex; gap:10px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  font-size:13px;
}
.btn--light{
  background:rgba(255,255,255,0.18);
  color:var(--white);
  border:1px solid rgba(255,255,255,0.45);
}
.btn--light:hover{ background:rgba(255,255,255,0.26); text-decoration:none; }

.footer{ padding:22px 0 0 0; }
.footer__inner{
  max-width:var(--max);
  margin:0 auto;
  color:var(--mid);
  font-size:14px;
}
.footer__rule{
  height:2px;
  background:rgba(0,0,0,0.08);
  border-radius:999px;
  margin:0 0 12px 0;
}

@media (max-width: 840px){
  .cards{ grid-template-columns:1fr; }
  .brand__text h1{ font-size:38px; }
  .dd__panel{ right:auto; left:0; }
}
