* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #152b06;
  --on-secondary-container: #440c42;
  --on-secondary-container-light: #f9d9f0;
  --background-color: #fcfafc;
  --border-radius: 36px;
  --border-radius-small: 20px;
  --shadow: 0 4px 20px rgba(39, 43, 51, 0.12);
  --surfaces-surface-container: #f0edf0;
  --button-primary-bg: #89db4f;
  --text-primary: #252626;
  --text-secondary: #525252;
  --tertiary-container-light: #d6e3fc;
  --outline-outline: #e3e2e2;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  margin-top: 48px;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 40px;
  line-height: 130%;
}

h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  margin-top: 40px;
  margin-bottom: 24px;
}

table {
  min-width: 700px;
  background: #ffffff;
  width: 100%;
  border: 1px solid var(--outline-outline);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
}

.table-container {
  overflow-x: auto;
}

th {
  vertical-align: top;
  text-align: start;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  padding: 16px;
  border-right: 1px solid var(--outline-outline);
  border-bottom: 1px solid var(--outline-outline);
}

th:last-of-type,
td:last-of-type {
  border-right: none;
}

tr:last-of-type td {
  border-bottom: none;
}

td {
  vertical-align: top;
  text-align: start;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  padding: 16px;
  border-right: 1px solid var(--outline-outline);
  border-bottom: 1px solid var(--outline-outline);
}

h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  margin-top: 24px;
  margin-bottom: 16px;
}

ul {
  list-style-type: disc;
  margin-left: 16px;
}

ul li,
ol li {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 12px; /* Adds space between list items */
}

ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

ul li::marker {
  font-size: 14px;
}

p {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

@media (max-width: 1024px) {
  body {
    padding: 0 16px;
  }

  h1 {
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  th {
    font-size: 16px;
  }

  td {
    font-size: 16px;
  }

  h3 {
    font-size: 18px;
  }

  ul li,
  ol li {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }
}
