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

:root {
  --primary: #0066cc;
  --primary-dark: #004fa3;
  --accent: #00a86b;
  --text: #1a1a2e;
  --text-light: #555577;
  --bg: #f8faff;
  --white: #ffffff;
  --border: #e0e8f0;
  --shadow: 0 2px 16px rgba(0, 102, 204, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.logo-text span {
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary);
  background: rgba(0, 102, 204, 0.07);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0052a3 60%, var(--accent) 100%);
  color: white;
  padding: 72px 24px 64px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 17px;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
}

/* MAIN CONTENT */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,102,204,0.07);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 36px;
}

.last-updated::before {
  content: "📅";
}

/* SECTIONS */
.section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 20px 0 10px;
}

.section p {
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 15px;
}

.section p:last-child {
  margin-bottom: 0;
}

.section ul, .section ol {
  padding-left: 20px;
  color: var(--text-light);
  font-size: 15px;
}

.section ul li, .section ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.section strong {
  color: var(--text);
  font-weight: 600;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,102,204,0.06), rgba(0,168,107,0.06));
  border: 1px solid rgba(0,102,204,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.highlight-box p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

/* CONTACT CARD */
.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
  margin-bottom: 24px;
}

.contact-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card p {
  opacity: 0.88;
  font-size: 15px;
  margin-bottom: 24px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.email-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

/* HOME PAGE CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 48px auto;
  max-width: 900px;
  padding: 0 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  box-shadow: var(--shadow);
  text-align: center;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,102,204,0.14);
  border-color: var(--primary);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* COMPANY INFO */
.company-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 40px;
  margin: 0 24px 32px;
  max-width: 900px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow);
}

.company-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.company-info strong {
  color: var(--text);
}

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
}

footer .footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

footer p {
  font-size: 13px;
  margin-bottom: 6px;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0;
}

footer .footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: white;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

th {
  background: rgba(0,102,204,0.08);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

td {
  padding: 10px 16px;
  border: 1px solid var(--border);
  color: var(--text-light);
  vertical-align: top;
}

tr:nth-child(even) td {
  background: rgba(248, 250, 255, 0.8);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .section {
    padding: 24px 20px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  nav ul {
    gap: 0;
  }

  nav ul li a {
    padding: 8px 10px;
    font-size: 13px;
  }
}
