:root {
  --about-bg: #f5f7fb;
  --about-card: #ffffff;
  --about-border: #e2e8f0;
}

.about-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
}

.about-hero .container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.05rem;
  color: #475569;
}

.about-pillars {
  padding: 4rem 0;
  background: #ffffff;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--about-card);
  border: 1px solid var(--about-border);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.pillar-card span {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  margin-bottom: 0.75rem;
}

.coverage-section {
  padding: 4rem 0 5rem;
  background: var(--about-bg);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.coverage-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--about-border);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #3730a3;
}

.cities-list {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #475569;
}

.cities-list strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.map-card {
  background: #6d6f78;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--about-border);
  position: relative;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  color: #f8fafc;
}

.map-caption {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 1rem;
}

.coverage-map {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.map-card svg {
  width: 100%;
  height: auto;
}

.dept {
  stroke: #0f172a;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.dept-13 {
  fill: #0f62d6;
}

.dept-83 {
  fill: #f8fafc;
}

.dept-06 {
  fill: #d62828;
}

.dept-number {
  font-size: 1.4rem;
  font-weight: 700;
  fill: #0f172a;
}

.map-city {
  fill: #0f172a;
}

.map-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #475569;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.legend-bullet.coverage {
  background: rgba(34, 197, 94, 0.85);
}

.legend-bullet.cities {
  background: #0f172a;
}

.legend-bullet.dept-13 {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.3);
}

.legend-bullet.dept-83 {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.3);
}

.legend-bullet.dept-06 {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.3);
}
