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

:root {
  --green: #2DBE60;
  --green-dark: #23a050;
  --text: #1a1a1a;
  --muted: #5f6368;
  --border: #e0e0e0;
  --bg: #f5f6fa;
  --card: #ffffff;
  --radius: 12px;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Header ── */
header {
  background: var(--green);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
header .logo-mark {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo-mark svg { width: 22px; height: 22px; }
header .brand {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.3px;
}

/* ── Nav bar ── */
.nav {
  background: var(--green-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px;
}
.nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.nav a.active { background: #fff; color: var(--green-dark); font-weight: 700; }

/* ── Layout ── */
main {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

/* ── Page title card ── */
.page-header {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 36px;
  margin-bottom: 28px;
}
.page-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.page-header .meta { font-size: 13px; color: var(--muted); }
.page-header .intro { margin-top: 16px; color: var(--muted); font-size: 14px; }

/* ── Section card ── */
.section {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 36px;
  margin-bottom: 16px;
}
.section h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.section h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 6px;
}
.section h3:first-child { margin-top: 0; }
.section p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.section p:last-child { margin-bottom: 0; }
.section ul { list-style: none; padding: 0; margin: 6px 0 10px; }
.section ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 3px 0 3px 18px;
  position: relative;
}
.section ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ── Table ── */
table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 10px 0; }
th {
  text-align: left;
  font-weight: 700;
  color: var(--text);
  background: #f0fdf5;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
td { padding: 9px 14px; border: 1px solid var(--border); color: var(--muted); vertical-align: top; }
tr:nth-child(even) td { background: #fafafa; }

/* ── Policy button grid (About Us) ── */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 4px;
}
.policy-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  background: #f0fdf5;
  border: 1px solid #c6f6d5;
  border-radius: 10px;
  padding: 16px 18px;
  transition: transform 0.12s, box-shadow 0.12s;
}
.policy-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(45,190,96,0.18); }
.policy-btn .t { font-weight: 700; font-size: 15px; color: var(--green-dark); }
.policy-btn .d { font-size: 12px; color: var(--muted); }

/* ── Contact card ── */
.contact-box {
  background: #f0fdf5;
  border: 1px solid #c6f6d5;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 8px;
}
.contact-box .name { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.contact-box .row { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.contact-box a { color: var(--green-dark); text-decoration: none; font-weight: 500; }
.contact-box a:hover { text-decoration: underline; }

/* ── Footer ── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 28px 20px 22px;
  margin-top: 24px;
}
.footer-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  margin-bottom: 14px;
}
.footer-links a {
  color: var(--green-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.footer-links a:hover { text-decoration: underline; }
.footer-company {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-banner { max-width: 820px; margin: 0 auto 14px; }
.footer-banner img { width: 100%; height: auto; display: block; border-radius: 6px; }
.footer-copy { font-size: 12px; color: var(--muted); }

@media (max-width: 600px) {
  .page-header, .section { padding: 20px 18px; }
  .page-header h1 { font-size: 22px; }
}
