:root{
  --red:#EC2529;
  --red-dark:#c81d21;
  --red-soft:#FDE3E3;
  --blue:#2B2B97;
  --blue-light:#4848b8;
  --blue-soft:#E5E4F7;
  --gold:#C9971E;
  --yellow:#FFE58A;
  --yellow-soft:#FFF6D9;
  --bg:#FFFBF2;
  --text:#241f3a;
  --muted:#6b6680;
  --white:#ffffff;
}
*{box-sizing:border-box; margin:0; padding:0;}
html,body{
  background:#e9e6f5;
  font-family:'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
body{ display:flex; justify-content:center; }
.frame{
  width:100%;
  max-width:430px;
  min-height:100vh;
  background:var(--bg);
  position:relative;
  overflow-x:hidden;
  box-shadow:0 0 40px rgba(43,43,151,0.25);
  display:flex;
  flex-direction:column;
}

/* header */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 16px;
  background:var(--white);
  border-bottom:1px solid #f0e9d6;
}
.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.logo img{
  height:82px;
  width:auto;
  display:block;
}
.back-link{
  display:flex;
  align-items:center;
  gap:5px;
  background:var(--yellow-soft);
  border:1px solid var(--yellow);
  color:var(--blue);
  font-size:11.5px;
  font-weight:700;
  padding:6px 11px;
  border-radius:20px;
  text-decoration:none;
}

/* page hero */
.page-hero{
  background:linear-gradient(160deg, var(--blue) 0%, #3d3db0 65%, var(--red) 165%);
  padding:28px 20px 26px;
  text-align:center;
}
.page-hero .eyebrow{
  display:inline-block;
  background:var(--yellow);
  color:var(--blue);
  font-weight:800;
  font-size:11px;
  padding:5px 12px;
  border-radius:20px;
  margin-bottom:12px;
}
.page-hero h1{
  color:var(--white);
  font-size:22px;
  line-height:1.35;
  font-weight:900;
}
.page-hero p{
  color:#e7e6ff;
  font-size:12.5px;
  margin-top:8px;
  line-height:1.55;
}

/* content */
main{ flex:1; padding:26px 20px 40px; }
.updated-badge{
  display:inline-block;
  background:var(--blue-soft);
  color:var(--blue);
  font-size:10.5px;
  font-weight:700;
  padding:4px 10px;
  border-radius:20px;
  margin-bottom:18px;
}
main h2{
  font-size:16px;
  font-weight:900;
  color:var(--blue);
  margin:22px 0 8px;
  padding-top:16px;
  border-top:1px solid #f0e9d6;
}
main h2:first-of-type{ border-top:none; padding-top:0; margin-top:0; }
main h3{
  font-size:13.5px;
  font-weight:800;
  color:var(--text);
  margin:14px 0 6px;
  padding-left:10px;
  border-left:3px solid var(--red);
}
main p{
  font-size:13px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:10px;
}
main ul, main ol{
  margin:0 0 12px;
  padding-left:0;
  list-style:none;
}
main ul li, main ol li{
  font-size:13px;
  color:var(--muted);
  line-height:1.65;
  padding-left:18px;
  position:relative;
  margin-bottom:7px;
}
main ul li::before{
  content:"●";
  color:var(--gold);
  font-size:8px;
  position:absolute;
  left:0;
  top:6px;
}
main ol{ counter-reset:step; }
main ol li{ padding-left:22px; }
main ol li::before{
  counter-increment:step;
  content:counter(step);
  color:var(--white);
  background:var(--blue);
  font-size:9.5px;
  font-weight:800;
  width:15px; height:15px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:absolute; left:0; top:2px;
}
main strong{ color:var(--text); }
main a{ color:var(--red-dark); font-weight:700; }

.info-box{
  background:var(--yellow-soft);
  border:1px solid var(--yellow);
  border-radius:12px;
  padding:14px 16px;
  margin:16px 0;
  font-size:12.5px;
  color:var(--blue);
  line-height:1.6;
}
.contact-card{
  background:var(--white);
  border:1px solid #f1eee0;
  border-radius:14px;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.contact-card .ic{
  width:38px; height:38px;
  border-radius:10px;
  background:var(--blue-soft);
  display:flex; align-items:center; justify-content:center;
  font-size:17px;
  flex-shrink:0;
}
.contact-card .lbl{ font-size:11px; color:var(--muted); font-weight:700; }
.contact-card .val{ font-size:13px; color:var(--text); font-weight:800; }

/* footer + sitemap */
footer{
  padding:20px 20px 28px;
  text-align:center;
  font-size:10.5px;
  color:var(--muted);
  line-height:1.7;
  background:var(--white);
  border-top:1px solid #f0e9d6;
}
footer .foot-logo{ color:var(--blue); font-weight:900; font-size:14px; margin-bottom:10px; }
.foot-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 14px;
  margin-bottom:14px;
}
.foot-links a{
  color:var(--muted);
  font-size:11px;
  text-decoration:none;
  font-weight:600;
}
.foot-links a:hover{ color:var(--red); }
.responsible{
  margin:0 0 16px;
  background:var(--yellow-soft);
  border:1px solid var(--yellow);
  border-radius:12px;
  padding:14px;
  font-size:11px;
  color:var(--blue);
  line-height:1.6;
  text-align:center;
}
