/* === CSS Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.15);
  --brand: #1f6f5b;
  --brand-2: #0f5f49;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  --radius: 18px;
  --container: 1100px;
}

body {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}