.overview-block {
  margin: 32px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}

.overview-block .overview-inner {
  background: #ffffff !important;
  border-radius: 16px;
  padding: 24px 28px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #0b1220;
  line-height: 1.45;
}

.overview-block .overview-heading {
  font-family: 'Segoe UI', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #000000;
}

.overview-block .overview-paragraph {
  margin: 0 0 8px 0;
  font-size: clamp(16px, 2vw, 18px);
}

.overview-block .overview-paragraph:last-of-type {
  margin-bottom: 0;
}

@media all and (max-width: 767px) {
  .overview-block .overview-heading {
    font-size: 18px;
  }
  .overview-block .overview-inner {
    padding: 12px 14px;
  }
  .overview-block .overview-paragraph {
    font-size: clamp(14px, 2vw, 15px);
  }
}