body {
  font-family: 'Inter', sans-serif; /* Original: Gotham */
  margin: 0;
  padding: 0;
  background-color: #ffffff; /* style_1 */
  color: #1a1a18;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Common colors */
:root {
  --color-primary: #0abbef; /* style_29 text color */
  --color-secondary: #ffed00; /* style_3, style_43, style_69 */
  --color-text-dark: #1a1a18; /* style_12, etc. */
  --color-text-light: #ffffff;
  --color-background-light-gray: #f0f2f4; /* style_33 */
  --color-background-white: #ffffff;
  --color-background-dark: #1a1a18; /* style_36 */
}