/* GLOBAL */
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif;
  background:#eef2f7;
  color:#1d2939;
  overflow-x:hidden;
}

.wrap{
  max-width:680px;
  margin:auto;
  padding:18px;
  min-width:0;
  box-sizing:border-box;
}

/* TOP BAR */
.top{
  position:sticky;
  top:0;
  background:#1e3a5f;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.12);
  z-index:10;
}

.top .wrap{
  padding:0 18px;
}

.top-inner{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.brand{
  color:#fff;
  font-weight:700;
  text-decoration:none;
  letter-spacing:.2px;
}

.brand:hover{
  color:#dbe8ff;
  text-decoration:underline;
}

/* MAIN CARD */
.card{
  background:#fff;
  border-radius:14px;
  padding:22px;
  box-shadow:0 2px 10px rgba(0,0,0,.07);
  min-width:0;
  box-sizing:border-box;
}

/* TEXT */
h1{
  margin:0 0 10px;
  font-size:28px;
}

h2{
  margin-top:20px;
}

.card h3{
  margin:18px 0 8px;
  font-size:17px;
  font-weight:600;
  color:#101828;
}

.desc{
  margin:0 0 18px;
  color:#475467;
  line-height:1.5;
}

/* FORM */
label{
  display:block;
  margin-top:14px;
  font-size:14px;
  font-weight:bold;
}

input, select, textarea{
  width:100%;
  max-width:100%;
  padding:14px;
  margin-top:6px;
  border:1px solid #d0d5dd;
  border-radius:10px;
  font-size:16px;
  box-sizing:border-box;
}

textarea{
  min-height:130px;
  resize:vertical;
}

input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="month"],
input[type="week"]{
  min-width:0;
  display:block;
}

button{
  width:100%;
  margin-top:18px;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#1e3a5f;
  color:#fff;
  font-size:16px;
  font-weight:bold;
  cursor:pointer;
}

button:hover{
  opacity:.95;
}

/* RESULT */
.result{
  margin-top:18px;
  padding:18px;
  background:#eef5ff;
  border-radius:12px;
  text-align:center;
}

.trust-block{
  margin-top:18px;
  padding:16px;
  border:1px solid #d9e2ec;
  border-radius:12px;
  background:#f8fafc;
}

.trust-block h2{
  margin-top:0;
}

.trust-block ul{
  margin:10px 0;
}

.methodology-block{
  margin-top:18px;
  padding:16px;
  border:1px solid #d9e2ec;
  border-radius:12px;
  background:#fff;
}

.methodology-block summary{
  cursor:pointer;
  font-weight:600;
  color:#1e3a5f;
}

.methodology-block > div{
  padding-top:12px;
}

.methodology-block h3{
  margin:14px 0 8px;
  font-size:16px;
  font-weight:600;
  color:#101828;
}

.methodology-block h3:first-of-type{
  margin-top:0;
}

.methodology-block ul{
  margin:8px 0;
  padding-left:1.2em;
  color:#475467;
}

.methodology-block p{
  margin:8px 0 0;
  color:#475467;
  line-height:1.5;
}

.faq-block{
  margin-top:18px;
  padding:16px;
  border:1px solid #d9e2ec;
  border-radius:12px;
  background:#fff;
}

.faq-block h2{
  margin-top:0;
}

.faq-block details{
  margin-top:10px;
  background:#f8fafc;
}

.faq-block p{
  margin:10px 0 0;
  color:#475467;
}

.small{
  font-size:13px;
  color:#475467;
}

.big{
  font-size:28px;
  font-weight:bold;
  color:#1e3a5f;
}

/* LINKS */
a{
  color:#134067;
  text-decoration:none;
}

a:hover{
  color:#0f2f4a;
  text-decoration:underline;
}

.card ul{
  list-style:none;
  padding-left:0;
}

.card ul li{
  margin:4px 0;
}

.card ul li a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#1e3a5f;
}

.card ul li a:hover{
  background:#f1f5fb;
  text-decoration:underline;
}

/* DETAILS MENUS */
details{
  margin-top:14px;
  background:#fff;
  border:1px solid #d0d5dd;
  border-radius:12px;
  padding:12px 14px;
}

summary{
  cursor:pointer;
  font-weight:bold;
  color:#1d2939;
}

details a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  color:#1e3a5f;
  text-decoration:none;
}

details a:hover{
  background:#f1f5fb;
  text-decoration:underline;
}

/* FOOTER */
.footer{
  text-align:center;
  font-size:14px;
  padding:18px 0 8px;
  color:#475467;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:10px;
  margin:10px 0 12px;
}

.category-link{
  display:block;
  padding:12px;
  border:1px solid #d0d5dd;
  border-radius:10px;
  background:#fff;
  color:#1e3a5f;
  text-decoration:none;
  font-weight:600;
}

.category-link:hover{
  background:#f1f5fb;
  color:#0f2f4a;
  text-decoration:underline;
}

.footer .home-link{
  color:#1e3a5f;
  font-weight:600;
}

.footer .home-link:hover{
  text-decoration:underline;
}

.footer-meta{
  margin:8px 0 0;
  line-height:1.6;
}

.footer-meta a{
  color:#1e3a5f;
}
