:root {
  --navy: #1a2a5e;
  --green: #2d8b4e;
  --orange: #f47920;
  --light-bg: #f5f7fa;
  --text: #333;
  --text-light: #666;
  --border: #dde3ee;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x:hidden; scroll-behavior:smooth; }
body { font-family:'Poppins',sans-serif; color:var(--text); background:#fff; overflow-x:hidden; -webkit-tap-highlight-color:transparent; }

nav {
  background:var(--navy); display:flex; align-items:center; justify-content:space-between;
  padding:12px 32px; position:sticky; top:0; z-index:100;
}
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; min-width:0; }
.logo-img {
  width:44px; height:44px; border-radius:8px; flex-shrink:0;
  object-fit:contain; background:#fff; padding:3px;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.logo-text { color:#fff; }
.logo-text strong { display:block; font-size:18px; font-family:'Nunito',sans-serif; font-weight:900; letter-spacing:1px; }
.logo-text span { font-size:10px; letter-spacing:2px; opacity:.8; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links a {
  color:rgba(255,255,255,.9); text-decoration:none; font-size:13px; font-weight:500;
  padding:8px 12px; border-radius:6px; transition:background .2s;
}
.nav-links a:hover, .nav-links a.active { background:rgba(255,255,255,.1); color:#fff; }
.nav-icons { display:flex; gap:8px; align-items:center; }
.nav-icons a, .nav-icons button {
  background:none; border:none; color:#fff; cursor:pointer; font-size:18px; padding:8px;
  display:flex; align-items:center; justify-content:center; min-width:44px; min-height:44px; text-decoration:none;
}
#mobileMenu { position:fixed; inset:0; background:#fff; z-index:200; overflow:auto; display:none; }
#mobileMenu.open { display:block; }
.mobile-menu-head { background:var(--navy); padding:16px 24px; display:flex; justify-content:space-between; align-items:center; }
.mobile-menu-head .logo-text strong, .mobile-menu-head .logo-text span { color:#fff; }
.mobile-menu-head button { background:none; border:none; color:#fff; font-size:24px; cursor:pointer; }
#mobileMenu a { display:block; padding:16px 24px; border-bottom:1px solid var(--border); color:var(--text); text-decoration:none; font-weight:500; }
#mobileMenu a.active { color:var(--navy); font-weight:700; background:var(--light-bg); }

.breadcrumb { background:var(--light-bg); border-bottom:1px solid var(--border); padding:12px 32px; }
.breadcrumb-inner { max-width:1200px; margin:0 auto; font-size:13px; color:var(--text-light); }
.breadcrumb-inner a { color:var(--green); text-decoration:none; }
.breadcrumb-inner a:hover { text-decoration:underline; }

.page-hero {
  background:linear-gradient(135deg,#f5f8ff,#eef2fb);
  padding:40px 32px; text-align:center;
}
.page-hero .badge {
  display:inline-flex; background:#e8f0fe; color:var(--navy);
  padding:5px 14px; border-radius:20px; font-size:12px; font-weight:600; margin-bottom:12px;
}
.page-hero h1 { font-family:'Nunito',sans-serif; font-size:32px; font-weight:900; color:var(--navy); }
.page-hero .subtitle { font-size:16px; color:var(--text-light); margin-top:10px; max-width:640px; margin-left:auto; margin-right:auto; line-height:1.6; }

.page-main { max-width:900px; margin:0 auto; padding:40px 32px; }
.page-main.wide { max-width:1200px; }
.page-main p { font-size:14px; line-height:1.7; color:var(--text-light); margin-bottom:14px; }
.page-main h2 { font-family:'Nunito',sans-serif; font-size:20px; font-weight:800; color:var(--navy); margin:32px 0 12px; display:flex; align-items:center; gap:8px; }
.page-main h2 i { color:var(--green); }
.page-main h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.content-section { border-left:4px solid var(--green); padding-left:20px; margin-bottom:28px; }
.content-section ul { list-style:none; margin-top:8px; }
.content-section li { font-size:14px; color:var(--text-light); margin-bottom:8px; display:flex; gap:8px; align-items:flex-start; }
.content-section li::before { content:"•"; color:var(--green); font-weight:bold; flex-shrink:0; }

.notice-card {
  background:#fffbf0; border:1.5px solid #f7c948; border-radius:12px; padding:20px; margin:16px 0;
}
.notice-card p { color:#78350f; font-size:14px; margin:0; }
.notice-card strong { color:#b45309; }

.card {
  background:#fff; border:1.5px solid var(--border); border-radius:12px;
  padding:24px; box-shadow:var(--shadow); margin-bottom:20px;
}
.card-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.leader-card { overflow:hidden; padding:0; }
.leader-card .leader-head { background:var(--navy); color:#fff; padding:16px 20px; }
.leader-card .leader-head h3 { color:#fff; margin:0; font-size:18px; }
.leader-card .leader-head p { color:rgba(255,255,255,.8); font-size:12px; margin:4px 0 0; }
.leader-card .leader-body { padding:20px; }
.leader-card .leader-body p { font-size:13px; margin-bottom:10px; }

.benefit-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin:20px 0; }
.benefit-item {
  background:#fff; border:1.5px solid var(--border); border-radius:12px; padding:16px;
  display:flex; gap:12px; align-items:flex-start; transition:box-shadow .2s;
}
.benefit-item:hover { box-shadow:var(--shadow); }
.benefit-item .icon { width:40px; height:40px; border-radius:10px; background:var(--light-bg);
  display:flex; align-items:center; justify-content:center; color:var(--navy); flex-shrink:0; }

.form-group { margin-bottom:14px; }
.form-group label.lbl { display:block; font-size:12px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:8px;
  font-size:14px; font-family:inherit; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--navy); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.consent-label {
  font-size:12px; color:var(--text-light); display:flex; gap:10px; align-items:flex-start;
  cursor:pointer; line-height:1.55; width:100%;
}
.consent-label input { width:18px; height:18px; min-width:18px; margin-top:2px; accent-color:var(--green); }
.consent-label span { flex:1; min-width:0; word-wrap:break-word; overflow-wrap:break-word; }
.consent-label a { color:var(--green); }

.btn-orange, .btn-green {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 28px; border-radius:8px; border:none; font-size:15px; font-weight:700;
  cursor:pointer; text-decoration:none; transition:transform .2s, box-shadow .2s;
}
.btn-orange { background:var(--orange); color:#fff; }
.btn-orange:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(244,121,32,.4); color:#fff; }
.btn-green { background:var(--green); color:#fff; width:100%; }
.btn-green:hover { background:#246b3e; color:#fff; }
.btn-green:disabled { opacity:.7; cursor:not-allowed; }

.cta-box {
  background:linear-gradient(135deg,#f5f8ff,#eef2fb); border:1.5px solid var(--border);
  border-radius:12px; padding:32px; text-align:center; margin-top:40px;
}
.cta-box h3 { font-family:'Nunito',sans-serif; color:var(--navy); margin-bottom:10px; }

.two-col { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start; }
.contact-img { width:100%; max-width:400px; border-radius:12px; box-shadow:var(--shadow); object-fit:cover; }
.contact-img-square { width:100%; height:200px; object-fit:cover; border-radius:12px 12px 0 0; }

.site-footer { background:var(--navy); color:rgba(255,255,255,.75); padding:40px 32px 24px; margin-top:40px; }
.site-footer-inner { max-width:1200px; margin:0 auto; }
.footer-meta { text-align:center; font-size:10px; color:rgba(255,255,255,.5); padding-bottom:20px; border-bottom:1px solid rgba(255,255,255,.1); line-height:1.6; }
.footer-badges { display:flex; justify-content:center; gap:8px; flex-wrap:wrap; padding:24px 0; }
.footer-badge { padding:6px 14px; border-radius:20px; background:rgba(255,255,255,.1); font-size:11px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px; padding-bottom:32px; }
.footer-grid h5 { color:#fff; font-size:11px; text-transform:uppercase; letter-spacing:1px; margin-bottom:12px; }
.footer-grid a { color:rgba(255,255,255,.75); text-decoration:none; font-size:13px; display:block; margin-bottom:6px; }
.footer-grid a:hover { color:#fff; }
.footer-grid p { font-size:13px; line-height:1.6; }
.social-links { display:flex; gap:8px; margin-top:12px; }
.social-links a { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:#fff; text-decoration:none; }
.footer-copy { text-align:center; font-size:12px; color:rgba(255,255,255,.5); padding-top:20px; border-top:1px solid rgba(255,255,255,.1); }

.float-wa {
  position:fixed; bottom:24px; right:24px; width:56px; height:56px; background:#25d366; color:#fff;
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px;
  text-decoration:none; box-shadow:0 4px 20px rgba(37,211,102,.4); z-index:90;
}
.float-wa:hover { transform:scale(1.05); color:#fff; }
.float-top {
  position:fixed; bottom:24px; left:24px; width:44px; height:44px; background:#fff;
  border:1.5px solid var(--border); border-radius:8px; display:flex; align-items:center;
  justify-content:center; color:var(--navy); text-decoration:none; box-shadow:var(--shadow); z-index:90;
}

@media(max-width:900px){
  .nav-links { display:none !important; }
  .card-grid, .two-col, .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  nav, .breadcrumb, .page-hero, .page-main { padding-left:16px; padding-right:16px; }
  .page-hero h1 { font-size:26px; }
  .footer-grid { grid-template-columns:1fr; }
  .logo-text span { display:none; }
  .float-wa { bottom:16px; right:16px; }
  .float-top { bottom:16px; left:16px; }
}
@media (min-width:901px){
  nav { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:20px; padding:12px max(32px,calc((100% - 1200px)/2 + 32px)); }
  #menuToggle { display:none; }
  .nav-links { justify-content:center; }
}
