:root {
  --navy:    #002147;
  --navy-dark:#001630;
  --navy-mid:#003070;
  --navy-m:  #003070;
  --navy-l:  #163a70;
  --gold:    #D4AF37;
  --gold-light:#F0D078;
  --gold-l:  #F0D078;
  --gold-d:  #A8880F;
  --cream:   #faf8f2;
  --off:     #f2eddf;
  --mid:     #555;
  --light:   #888;
  --white:   #ffffff;
  --border:  #E4DFC8;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --tr:      0.25s cubic-bezier(.4,0,.2,1);
  --sh:      0 2px 16px rgba(0,33,71,.08);
  --sh-lg:   0 8px 40px rgba(0,33,71,.18);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--sans);background:var(--cream);color:var(--navy);min-height:100vh;line-height:1.6;}
h1,h2,h3,h4,h5{font-family:'Cormorant Garamond',serif;line-height:1.25;}
a{text-decoration:none;color:inherit;}
.container{max-width:1160px;margin:0 auto;padding:0 28px;}

.page-hero{background:var(--navy);padding:48px 40px;text-align:center;position:relative;overflow:hidden;}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(212,175,55,.10) 0%,transparent 65%);}
.page-hero-inner{position:relative;z-index:1;}
.page-hero h1{font-size:clamp(28px,4vw,42px);font-weight:600;color:var(--gold);line-height:1.2;margin-bottom:10px;}
.page-hero p{font-size:15px;color:rgba(255,255,255,.65);max-width:520px;margin:0 auto;line-height:1.6;}

.main-content{max-width:1280px;margin:0 auto;padding:36px 40px;}
.content-grid{display:grid;grid-template-columns:1fr 330px;gap:40px;align-items:start;}
.content-main{min-width:0;}
.content-sidebar{display:flex;flex-direction:column;gap:24px;}
.section-title{font-family:'DM Sans',sans-serif;font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px;}
.section-desc{font-size:14px;color:var(--mid);line-height:1.65;margin-bottom:20px;}

.checklist{margin:0 0 24px;}
.checklist-item{display:flex;align-items:flex-start;gap:14px;padding:15px 18px;background:var(--white);border:1px solid var(--border);border-left:3px solid transparent;margin-bottom:8px;border-radius:4px;transition:var(--tr);cursor:pointer;}
.checklist-item:hover{border-left-color:var(--gold);background:#fefdf6;}
.checklist-item.checked{border-left-color:var(--gold);background:#fefcf4;}
.cb-wrap{width:18px;height:18px;flex-shrink:0;border:2px solid #c5ced9;border-radius:3px;display:flex;align-items:center;justify-content:center;margin-top:2px;background:var(--white);transition:var(--tr);}
.checklist-item.checked .cb-wrap{background:var(--gold);border-color:var(--gold);}
.cb-wrap svg{width:10px;height:10px;opacity:0;stroke:var(--navy);fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}
.checklist-item.checked .cb-wrap svg{opacity:1;}
.checklist-item label{font-size:14px;color:var(--mid);line-height:1.65;cursor:pointer;flex:1;}
.checklist-item.checked label{color:var(--navy);}
.checklist-item.warn-item{border-left-color:#e53935;}
.checklist-item.warn-item .cb-wrap{border-color:#e53935;}
.checklist-item label strong{color:var(--navy);font-weight:600;}

.help-box{background:#f5f5f5;border-left:4px solid var(--gold);border-radius:4px;padding:20px 22px;margin-top:4px;}
.help-box h4{font-family:'DM Sans',sans-serif;font-size:15px;font-weight:600;color:var(--navy);margin-bottom:8px;}
.help-box p{font-size:14px;color:var(--mid);line-height:1.65;margin:0;}
.help-box a{color:var(--navy);font-weight:700;}
.help-box a:hover{text-decoration:underline;}

.governance-wrap{max-width:1280px;margin:0 auto;padding:0 40px 52px;}
.governance-box{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:8px;
  box-shadow:var(--sh);
  padding:44px 52px;
}
.gov-red{
  font-family:'Times New Roman',Times,serif;
  font-size:15.5px;font-weight:700;
  color:#c0392b;
  margin-bottom:22px;
  padding-bottom:10px;
  border-bottom:1px solid #e4ddd0;
}
.gov-h{
  font-family:'Times New Roman',Times,serif;
  font-size:15px;font-weight:700;color:#111;
  margin:28px 0 12px;
}
.gov-sh{
  font-family:'Times New Roman',Times,serif;
  font-size:15px;font-weight:700;color:#111;
  margin:20px 0 10px;
}
.gov-p{
  font-family:'Times New Roman',Times,serif;
  font-size:15px;color:#222;
  line-height:1.9;margin-bottom:14px;
  text-align:justify;
}
.gov-p strong{font-weight:700;color:#111;}
.gov-ul{list-style:disc;padding-left:30px;margin:8px 0 18px;}
.gov-ul li{
  font-family:'Times New Roman',Times,serif;
  font-size:15px;color:#222;
  line-height:1.9;margin-bottom:8px;
  text-align:justify;
}
.gov-ul li strong{font-weight:700;color:#111;}
.uline{text-decoration:underline;color:#222;}

@media(max-width:1100px){
  .content-grid{grid-template-columns:1fr;}
  .content-sidebar{max-width:520px;}
}
@media(max-width:768px){
  .page-hero{padding:32px 20px;}
  .main-content{padding:24px 16px;}
  .governance-wrap{padding:0 16px 36px;}
  .governance-box{padding:28px 20px;}
}
