:root {
  --forest: #143d34;
  --leaf: #7ed957;
  --lime: #c5f36b;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --ink: #17332c;
  --muted: #5d6d67;
  --line: #d7dfd3;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.about-public-header {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-public-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.about-public-brand img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
}

.about-public-home {
  padding: 10px 15px;
  border-radius: 6px;
  color: var(--forest);
  background: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.about-public-main {
  width: min(100% - 40px, 880px);
  margin: 28px auto 72px;
}

.about-public-card {
  padding: clamp(30px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(20, 61, 52, .08);
}

.about-title {
  margin: 0 0 42px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 68px);
  line-height: .98;
  letter-spacing: -.035em;
}

.about-section {
  margin-bottom: 34px;
}

.about-section h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.12;
}

.about-section p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-legal {
  margin: 42px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-legal a {
  color: var(--forest);
  font-weight: 700;
}

.about-public-footer {
  width: min(100% - 48px, 880px);
  margin: 0 auto;
  padding: 24px 20px 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.about-public-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 7px;
}

.about-public-footer-nav a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease;
}

.about-public-footer-nav a:hover {
  color: var(--leaf);
}

.about-public-footer-nav a:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .about-public-header {
    width: min(100% - 28px, 1080px);
    padding: 14px 0;
  }

  .about-public-brand span {
    display: none;
  }

  .about-public-main {
    width: min(100% - 28px, 880px);
    margin: 18px auto 48px;
  }

  .about-public-footer {
    width: min(100% - 28px, 880px);
    padding-inline: 8px;
  }

  .about-public-card {
    padding: 30px 22px;
    border-radius: 10px;
  }

  .about-title {
    margin-bottom: 32px;
    line-height: .92;
  }

  .about-title-mobile-line {
    display: block;
    white-space: nowrap;
  }

  .about-section {
    margin-bottom: 28px;
  }
}
