:root {
  --deep-blue: #0f75bd;
  --fresh-green: #2fbf71;
  --soft-bg: #f5fbff;
  --muted: #546274;
  --text: #1f2a36;
  --border: #d9e6ef;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(23, 95, 163, 0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: var(--soft-bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--deep-blue);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--deep-blue), var(--fresh-green));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-text span:first-child { font-size: 16px; }
.brand-text span:last-child,
.brand-text .brand-sub { font-size: 12px; color: var(--muted); font-weight: 600; }
.brand-sub { text-decoration: none; }
.brand-sub:hover { color: var(--deep-blue); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-trigger {
  background: none;
  border: none;
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease;
}
.nav-trigger:hover { background: rgba(15, 117, 189, 0.08); }
.home-link {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
  color: var(--deep-blue);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.2s ease;
}
.home-link:hover { background: rgba(15, 117, 189, 0.08); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle:hover { background: rgba(15, 117, 189, 0.08); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mega {
  position: absolute;
  top: 48px;
  left: 0;
  display: none;
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 240px;
  border: 1px solid var(--border);
}
.nav-item:hover .mega,
.nav-item:focus-within .mega { display: grid; }
.mega {
  grid-template-columns: 1fr;
  gap: 8px;
}
.mega a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}
.mega a:hover {
  background: rgba(47, 191, 113, 0.08);
  color: var(--deep-blue);
  border-color: var(--border);
}
.cta {
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--deep-blue), var(--fresh-green));
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.cta:hover { transform: translateY(-1px); }
main { max-width: 1200px; margin: 0 auto; padding: 28px; }
.hero {
  background: linear-gradient(135deg, rgba(15,117,189,0.12), rgba(47,191,113,0.12));
  border-radius: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero h1 { margin: 0 0 12px; font-size: 28px; }
.hero p { margin: 0 0 14px; color: var(--muted); }
.hero ul { margin: 0; padding-left: 18px; color: var(--text); }
.hero img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.section-title {
  margin: 26px 0 12px;
  font-size: 22px;
}
.card-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.card-row::-webkit-scrollbar { height: 8px; }
.card-row::-webkit-scrollbar-thumb {
  background: rgba(15,117,189,0.3);
  border-radius: 999px;
}
.info-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.info-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.info-card .body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card h3 { margin: 0; font-size: 16px; }
.info-card p { margin: 0; color: var(--muted); font-size: 14px; }
.description {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 18px;
  margin-top: 14px;
  box-shadow: var(--shadow);
  color: var(--muted);
}
.faq {
  margin-top: 36px;
}
.faq h2 { margin: 0 0 14px; font-size: 22px; }
.faq-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.faq-stack {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.faq-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  overflow: hidden;
  align-items: center;
  padding: 12px;
}
.faq-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.faq-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--deep-blue);
}
.faq-card p { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.faq-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.sub-hero {
  background: linear-gradient(135deg, rgba(15,117,189,0.12), rgba(47,191,113,0.12));
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 20px 0;
}
.sub-hero h1 {
  margin: 0 0 8px;
  font-size: 26px;
}
.lead { color: var(--muted); margin: 0 0 12px; }
.page-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.page-section h2 { margin: 0 0 10px; }
.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.bullet {
  padding-left: 18px;
  color: var(--muted);
}
.page-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,117,189,0.12);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
}
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .topbar { flex-wrap: wrap; align-items: flex-start; }
  .nav-toggle { display: flex; flex-direction: column; margin-left: auto; }
  .nav-links {
    display: none;
    width: 100%;
    gap: 8px;
    padding-top: 8px;
    flex-direction: column;
  }
  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr;
  }
  .nav-item { width: 100%; }
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
  .mega {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .faq-card { grid-template-columns: 1fr; }
}
