:root {
  --primary: #050505;
  --accent: #116dff;
  --text: #1a1a1a;
  --text-muted: #5f5f5f;
  --bg: #f9f9f9;
  --bg-alt: #f1f1f3;
  --border: #e0e0e2;
  --max-width: 1200px;
  --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(38px, 6vw, 78px); margin-bottom: 24px; font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; font-weight: 700; }
h3 { font-size: 20px; margin-bottom: 10px; font-weight: 700; }

p { margin-bottom: 16px; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover { opacity: 0.8; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 249, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.site-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

nav {
  /* margin-left: auto; removed to move menu to the left */
}

header .container .header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-inner {
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

nav a:hover { color: var(--primary); }

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 140px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.lang-dropdown:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s ease;
  margin-bottom: 2px;
}

.lang-menu a:last-child {
  margin-bottom: 0;
}

.lang-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
  opacity: 1;
}

.lang-menu a.active {
  color: var(--accent);
  background: rgba(17, 109, 255, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(17, 109, 255, 0.2); }

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover { background: rgba(17, 109, 255, 0.08); box-shadow: none; }

.btn-small {
  padding: 10px 20px;
  font-size: 13px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

section { padding: 48px 0; }

.hero {
  padding: 100px 0 60px;
}

.intro-text {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 720px;
}

.section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 18px;
}

.highlights { background: var(--bg-alt); }

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.highlight-card {
  padding: 28px;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-icon {
  width: 32px;
  height: 32px;
}

.card-text { color: var(--text-muted); }

.text-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.section-previews .preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.preview-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f9f9f9;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.preview-card p { color: var(--text-muted); flex: 1; }

.cta-panel {
  background: #0a192f;
  color: #fff;
}

.cta-content { max-width: 680px; }
.cta-content h2 { color: #fff; }
.cta-content p { color: rgba(255, 255, 255, 0.75); }
.cta-panel .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-panel .btn-outline:hover { background: rgba(255,255,255,0.1); }


.service-highlights { background: var(--bg-alt); }

.highlight-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card-simple {
  text-align: center;
  padding: 40px 24px;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-card-simple:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

.highlight-icon-container {
  width: 64px;
  height: 64px;
  background: rgba(17, 109, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.highlight-icon {
  width: 32px;
  height: 32px;
}

.highlight-card-simple h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.highlight-card-simple p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-list-minimal {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  width: 100%;
}

.service-list-minimal li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list-minimal li::before {
  content: "→";
  color: var(--accent);
  font-weight: bold;
}

.service-list-minimal li:last-child {
  border-bottom: none;
}

.highlight-card-simple .btn {
  margin-top: auto;
  width: 100%;
}

@media (max-width: 960px) {
  .highlight-grid-three {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.page-content .content-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.map-container {
  margin: 40px auto;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}

.location-map {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.value-grid,
.service-grid,
.program-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card,
.service-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-icon-container {
  width: 56px;
  height: 56px;
  background: rgba(17, 109, 255, 0.05);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
}

.stack-diagram {
  margin: 32px 0 48px;
  padding: 40px;
  background: var(--bg-alt);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 24px;
  text-align: left;
}

/* Minimalistic Page Title */
.highlight { color: var(--accent); }

.page-title-minimal {
  padding: 60px 0 20px;
  text-align: center;
}

.page-title-minimal h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 0;
  font-weight: 800;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.skill-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
}

.skill-chip.highlight { color: var(--accent); font-weight: 700; }
.skill-chip.highlight2 { color: #7c6af7; font-weight: 700; }
.skill-chip.highlight3 { color: #f97316; font-weight: 700; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.list-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.list-block ul li::before {
  content: '•';
  color: #f97316;
  font-size: 18px;
  line-height: 1;
}

.list-block.arrows ul li::before {
  content: '›';
  color: var(--accent);
  font-size: 18px;
}

.cra-box {
  border: 1px solid #7c6af7;
  background: linear-gradient(135deg, rgba(124,106,247,0.05) 0%, rgba(17,109,255,0.03) 100%);
  padding: 32px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 4px;
}

.cra-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c6af7;
  margin-bottom: 12px;
}

.cra-box p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }

.table-responsive {
  overflow-x: auto;
  margin-bottom: 40px;
}

.price-table, .markets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table thead tr, .markets-table thead tr {
  background: var(--bg-alt);
}

.price-table th, .markets-table th {
  padding: 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.price-table td, .markets-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.price-table .profile-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.price-table .profile-desc {
  color: var(--text-muted);
  font-size: 12px;
}

.price-val {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.price-val.accent2 { color: #7c6af7; }
.price-val.orange { color: #f97316; }

.training-grid {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.training-row {
  display: grid;
  grid-template-columns: 2fr 80px 140px 140px;
  background: #f9f9f9;
  padding: 16px;
  gap: 16px;
  align-items: center;
}

.training-row.header-row {
  background: var(--bg-alt);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.training-name { font-weight: 600; }
.training-days { text-align: center; color: var(--text-muted); }
.training-price { color: #34d399; font-weight: 600; }

.training-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
}

.market-name { font-weight: 700; }
.market-mode {
  font-size: 12px;
  background: var(--bg-alt);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

.cta-section-bottom .cta {
  background: #050505;
  color: #fff;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-radius: 4px;
}

/* Services Switch Page */
.service-switch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-switch-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-switch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

.service-switch-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-switch-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.service-switch-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-switch-link {
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .service-switch-grid {
    grid-template-columns: 1fr;
  }
}

.cta-left h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.cta-left p { color: rgba(255,255,255,0.7); font-size: 14px; }

.cta-right { display: flex; flex-direction: column; gap: 12px; text-align: right; }
.cta-link { color: var(--accent); font-weight: 700; text-decoration: none; }
.cta-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .training-row { grid-template-columns: 1fr 1fr; }
  .training-row > div:nth-child(3), .training-row > div:nth-child(4) { display: none; }
  .training-row.header-row > div:nth-child(3), .training-row.header-row > div:nth-child(4) { display: none; }
  .cta { flex-direction: column; text-align: center; }
  .cta-right { text-align: center; }
}

@media (max-width: 480px) {
  .skills-grid { grid-template-columns: 1fr; }
}

.stack-layer {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.stack-layer:hover {
  transform: translateX(8px);
  border-color: var(--accent);
}

.layer-label {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.layer-content {
  font-size: 15px;
  color: var(--text-muted);
}

.engagement-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin: 0;
  position: relative;
}

.flow-step {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border-right: 1px dashed var(--border);
}

.flow-step:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .flow-step {
    border-right: none;
    border-bottom: 1px dashed var(--border);
  }
  .flow-step:last-child {
    border-bottom: none;
  }
}

.step-number {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin: 0 auto 16px;
}

.flow-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.program-card .code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.contact-section {
  padding: 48px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  opacity: 1;
}

.contact-icon {
  width: 54px;
  height: 54px;
  background: rgba(17, 109, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 28px;
  height: 28px;
}

.contact-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  header .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    margin-left: 0;
  }

  section { padding: 70px 0; }
  .hero { padding-top: 120px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { flex-wrap: wrap; justify-content: center; }
  .cta-group { flex-direction: column; align-items: stretch; }
}


.section-title-center {
  text-align: center;
  margin-bottom: 48px;
}

.how-we-work {
  background: var(--bg);
}

.how-we-work .highlight-card-simple {
  background: var(--bg-alt);
}

.borderless-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.borderless-table th, .borderless-table td {
  padding: 24px 20px;
  text-align: left;
  border: none;
  vertical-align: top;
}

.borderless-table th {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.borderless-table tbody tr:nth-child(even) {
  background: rgba(241, 241, 243, 0.4); /* Very light variant of bg-alt */
}

.borderless-table tbody tr {
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(224, 224, 226, 0.5);
}

.borderless-table tbody tr:last-child {
  border-bottom: none;
}

.borderless-table tbody tr:hover {
  background: rgba(17, 109, 255, 0.04);
}

.borderless-table td {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.borderless-table td:first-child {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .borderless-table {
    border: none;
    background: transparent;
  }
  .borderless-table thead {
    display: none;
  }
  .borderless-table, .borderless-table tbody, .borderless-table tr, .borderless-table td {
    display: block;
    width: 100%;
  }
  .borderless-table tr {
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  }
  .borderless-table tbody tr:nth-child(even) {
    background: #fff;
  }
  .borderless-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(224, 224, 226, 0.4);
  }
  .borderless-table td:last-child {
    border-bottom: none;
  }
  .borderless-table td::before {
    content: attr(data-label);
    font-weight: 800;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }
}


.world-map-section {
  padding: 60px 0;
  background: var(--bg-alt);
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  justify-content: center;
  align-items: center;
}

.world-map-img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Numbers Section */
.numbers-section {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.5s ease-in-out;
}

.numbers-section.hidden {
  display: none;
}

.numbers-grid {
  max-width: 800px;
  margin: 0 auto;
}

.numbers-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.numbers-list li {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 20px;
  background: #fff;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.page-content {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrapper p {
  font-size: 17px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .map-container {
    padding: 20px;
  }
  .point-label {
    font-size: 14px; /* Larger text for smaller maps to remain readable */
  }
}
