:root {
  --color-background: #f2f2f2;
  --color-text-gray: #9caab5;
  --color-teal-dark: #91beba;
  --color-teal-light: #84c0b8;
  --color-teal-border: #83bfb9;
  --color-yellow: #ffdd00;
  --color-white: #ffffff;
}

body {
  margin: 0;
  font-family: 'Red Hat Display', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text-gray);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

.eyebrow-text {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 900;
  font-size: 46px;
  letter-spacing: 27.6px;
  text-align: center;
  color: var(--color-text-gray);
  margin-bottom: 40px;
}

.underline-teal {
  text-decoration: underline;
  text-decoration-color: #84c0b8;
  text-underline-offset: 8px;
}

@media (max-width: 1200px) {
  .eyebrow-text {
    font-size: 32px;
    letter-spacing: 16px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 40px 15px;
  }
  .eyebrow-text {
    font-size: 24px;
    letter-spacing: 10px;
  }
}