html {
  background-color: var(--background-base-default);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-image: none; /* Remove default background */
  max-width: none; /* Remove width restriction */
}

.page-container {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.title h1 {
  font-family: var(--krungsri-700);
  font-weight: 700;
  color: var(--content-high-color);
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.about-us-container {
  background-color: var(--foreground-primary-default);
  padding: 16px;
  gap: 16px;
  border-radius: 24px;
  width: calc(100% - 32px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: calc(40px + var(--footer-height));
}

/* Big Screen (768px++) */
@media (min-width: 768px) {
  .title h1 {
    font-size: 22px;
    line-height: 28px;
  }

  .about-us-container {
    max-width: 736px;
    margin-bottom: calc(80px + var(--footer-height-big-screen));
  }
}
