@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0f2a4a;
  --navy-mid: #1a3a6b;
  --navy-light: #1e4d8c;
  --orange: #f5a623;
  --orange-dark: #d98f1a;
  --orange-light: #fff3d6;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef1f7;
  --gray-200: #dde3ee;
  --gray-400: #9aa5bc;
  --gray-600: #4a5568;
  --gray-800: #1a2035;
  --green: #27ae60;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(15,42,74,0.08);
  --shadow-md: 0 4px 16px rgba(15,42,74,0.12);
  --shadow-lg: 0 8px 32px rgba(15,42,74,0.16);
  --transition: all 0.22s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.65;
  font-size: 15px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--orange);
  padding: 0.4rem 2rem;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #6b4000;
  letter-spacing: 0.02em;
}
.topbar a { color: #6b4000; text-decoration: underline; }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  background: var(--orange);
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.logo-text { color: #fff; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.45rem 0.9rem;
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.nav-links > li > a.active { color: var(--orange); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  z-index: 300;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--orange); }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
  pointer-events: none;
}
.page-banner h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.page-banner p { color: rgba(255,255,255,0.65); font-size: 15px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: var(--orange); text-decoration: none; font-weight: 600; }
.breadcrumb span { opacity: 0.4; }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ── SECTION TITLE ── */
.section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--orange);
}
.section-title::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--orange);
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-primary { background: var(--orange); color: #5a3000; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,166,35,0.35); }
.btn-secondary { background: var(--navy-mid); color: #fff; }
.btn-secondary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy-mid); border: 1.5px solid var(--navy-mid); }
.btn-outline:hover { background: var(--navy-mid); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 1.5rem; }

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--navy-mid);
  letter-spacing: 0.03em;
}
.tag-orange { background: var(--orange-light); color: #7a4800; }
.tag-green { background: #d4f7e4; color: #155724; }
.tag-new { background: #fff3cd; color: #856404; }

/* ── SIDEBAR BOXES ── */
.side-box {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.side-box:last-child { margin-bottom: 0; }
.side-list { list-style: none; }
.side-list li { padding: 0.45rem 0; border-bottom: 1px solid var(--gray-100); }
.side-list li:last-child { border-bottom: none; }
.side-list a {
  color: var(--navy-light);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.15s;
}
.side-list a::before { content: '›'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.side-list a:hover { color: var(--orange); }

/* ── NOTICE BOX ── */
.notice {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: #6b4000;
  margin-bottom: 1.5rem;
}
.notice strong { display: block; margin-bottom: 0.25rem; font-size: 14px; }

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--navy);
  padding: 3rem 2rem;
}
.features-strip-inner { max-width: 1140px; margin: 0 auto; }
.features-strip h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 700px) { .feat-grid { grid-template-columns: 1fr; } }
.feat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feat-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.feat-icon {
  width: 56px; height: 56px;
  background: rgba(245,166,35,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 1rem;
}
.feat-box h3 { font-size: 15px; font-weight: 700; color: var(--orange); margin-bottom: 0.4rem; }
.feat-box p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── CONTACT BAR ── */
.contact-bar {
  background: #fff;
  border-top: 3px solid var(--orange);
  padding: 2rem;
}
.contact-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) { .contact-bar-inner { grid-template-columns: 1fr; } }
.contact-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-col p { font-size: 13px; color: var(--gray-600); margin-bottom: 0.3rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 12.5px; text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-bottom a { color: var(--orange); text-decoration: none; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  background: var(--orange);
  color: #5a3000;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
}
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top.visible { display: flex; }
