:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #10213b;
  background: #eef4fb;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.service-card {
  width: min(100%, 620px);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid #cad8ea;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 55px rgb(16 33 59 / 10%);
}

.environment {
  margin: 0 0 12px;
  color: #315f9b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1;
}

p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.note {
  padding: 14px 16px;
  border-radius: 12px;
  background: #f3f7fc;
}

a {
  display: inline-block;
  margin-top: 8px;
  color: #164f91;
  font-weight: 750;
}

a:focus-visible {
  outline: 3px solid #efb52d;
  outline-offset: 4px;
}
