:root{
  --blue:#3f6f8f;
  --charcoal:#1f1f1f;
  --light:#f4f6f8;
  --white:#ffffff;
  --red:#c63c30;
  --text:#2a2a2a;
  --muted:#5b6770;
  --border: rgba(31,31,31,0.12);
  --shadow: 0 10px 24px rgba(0,0,0,0.10);
  --radius: 10px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height:1.55;
}

a{ color: inherit; }

.container{
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
}

header{
  background: var(--white);
  border-bottom: 3px solid var(--blue);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand img{
  height: 56px;
  width:auto;
  display:block;
}
.brand .title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.brand .subtitle{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(63,111,143,0.08);
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

main{ padding: 34px 0 50px; }

.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.h1{
  margin:0 0 8px;
  font-size: 26px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.p{ margin:0; color: var(--muted); }

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.action{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(63,111,143,0.06), rgba(63,111,143,0.02));
}
.action h2{
  margin:0 0 8px;
  font-size: 16px;
  color: var(--blue);
}
.action p{
  margin:0 0 14px;
  font-size: 14px;
  color: var(--muted);
}

.btn{
  display:inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 11px 14px;
  font-weight: 900;
  text-decoration:none;
  border-radius: 8px;
  border: 1px solid rgba(31,31,31,0.10);
}
.btn:hover{ filter: brightness(0.98); }

.btn.secondary{
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(63,111,143,0.40);
}

.footer{
  text-align:center;
  margin-top: 18px;
  font-size: 12px;
  color: rgba(91,103,112,0.95);
}
.footer a{ text-decoration: underline; text-underline-offset: 3px; }

.notice{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(198,60,48,0.07);
  border: 1px solid rgba(198,60,48,0.20);
  color: #7a221c;
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 840px){
  .grid{ grid-template-columns: 1fr; }
  .brand img{ height: 48px; }
}
