:root {
  --font-family: Inter, sans-serif;
  --font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  --green: #238636;
  --green-1: #26933B;
  --secondary: #e5e7eb;
  --secondary-1: #000;
  --font-size: max(1.375rem, 2.225vw);
  --font-size-xxxx-small: max(0.875rem, 50%);
  --font-size-xxx-small: max(0.9375rem, 60%);
  --font-size-xx-small: max(1rem, 65%);
  --font-size-x-small: max(1.0625rem, 75%);
  --font-size-small: 1.4rem;
  --font-size-medium: 1.75rem;
  --font-size-large: 2rem;
  --font-size-x-large: 2.2rem;
  --font-size-xx-large: 2.75rem;
  --letter-spacing-loose: -0.0175em;
  --letter-spacing: -0.025em;
  --letter-spacing-tight: -0.03375em;
  --letter-spacing-x-tight: -0.04125em;
  --color-gray-200: #e5e7eb;
  --color-slate-500: oklch(55.4% 0.046 257.417);
  --color-slate-700: oklch(37.2% 0.044 257.287);
  --color-slate-800: #1d293d;
  --color-white: #ffffff;
  --color-offwhite: #f8fafc;
  --color-qmaps-blue: #7FDEF0;
  --color-qmaps-blue-dark: #67B4C2;
  --color-qmaps-blue-light: #ccf2f9;
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}
body {
    font-size: 16px;
    /*background: var(--color-slate-700);*/
    background: var(--color-white);
}
header {
    padding: 1rem 0;
    background-color: var(--color-white);
}
.header-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; /* Center items vertically for better mobile alignment */
    box-sizing: border-box;
}
.container {
    margin:  auto;
    max-width: 1200px; /* Constrain width for centering */
    padding: 0 8px; /* Smaller padding for <640px screens */
}
footer {
    padding: 40px 0;
    background-color: var(--color-white);
}
.footer-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; /* Center items vertically for better mobile alignment */
    box-sizing: border-box;
}
.footer-social-svg {
  width: 24px;
  height: 24px;
  fill: var(--color-slate-500); 
  cursor: pointer;
}
.footer-social-svg:hover {
  fill: var(--color-slate-700); 
}
.footer-text {
  color: var(--color-slate-500); 
  font-size: var(--font-size-xxxx-small);
}
/* CSS for highlighting the active paragraph */
.highlight {
    background-color: yellow;
    font-weight: bold;
}
@media (min-width: 640px) {
  .container {
      padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
      padding: 0 32px;
  }
}
