body {
  font-family: "Noto Sans", sans-serif;
  background-color: white;
  color: #043a50;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  box-sizing: border-box;
}

body * {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1,
h2 {
  font-family: "Fjalla One", sans-serif;
  color: #189ab4;
  margin-top: 20px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.75em;
  margin-bottom: 10px;
}

p {
  font-size: 1em;
  margin-bottom: 20px;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  font-family: "Fjalla One", sans-serif;
  font-size: 1em;
  color: white;
  background-color: #189ab4;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

.back-button:hover {
  background-color: #107c8b;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  p {
    font-size: 0.95em;
  }

  .back-button {
    font-size: 0.95em;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75em;
  }

  h2 {
    font-size: 1.25em;
  }

  p {
    font-size: 0.9em;
  }

  .back-button {
    font-size: 0.9em;
    padding: 8px 16px;
  }
}
