* {
  box-sizing: border-box;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #2f4f4f;
  color: white;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  line-height: 1.15;
}

.logo small {
  font-size: 0.72em;
  font-weight: normal;
}

.site-logo {
  width: 120px;
  height: auto;
  display: block;
  background: #f7f3ea;
  padding: 8px;
  border-radius: 50%;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
}

.hero {
  padding: 8px 0 6px 0;
}

.three-pane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.pane,
.hero-text,
.hero-card {
  background: white;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pane {
  height: 100%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
}


.pane .button {
  margin-top: auto;
  align-self: flex-start;
}
.pane p,
.hero-text p,
.hero-card p {
  font-size: 1.2rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.pane h2,
.hero h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.pane h2 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: normal;
}

.hero h1 {
  margin-top: 0;
  font-size: 2.4rem;
  color: #243b3b;
}

.hero h2 {
  font-size: 1.45rem;
  color: #3f5f5f;
}

.profile-pane {
  text-align: center;
}

.profile-photo {
  max-width: 260px;
  display: block;
  margin: 0 auto 24px auto;
}

.profile-pane h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: #1f3f35;
  margin-top: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.profile-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5b6f67;
  margin: 0 0 20px 0;
}

.page-image {
  width: 45%;
  display: block;
  margin: 20px auto 30px auto;
  border-radius: 10px;
}

.button {
  display: inline-block;
  margin-top: 18px;
  background: #2f4f4f;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #243b3b;
}

.button-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  align-items: center;
}

.button-row .button {
  margin-top: 0;
}

@media (max-width: 760px) {
  .nav-wrap,
  .three-pane-grid {
    display: block;
  }

  .nav {
    margin-top: 12px;
  }

  .nav a {
    display: inline-block;
    margin: 0 16px 0 0;
  }

  .three-pane-grid .pane,
  .hero-card {
    margin-bottom: 24px;
  }

  .button-row {
    display: block;
  }

  .button-row .button {
    display: block;
    text-align: center;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
.notice-section p {
  font-size: 1.05rem;
  line-height: 1.65;
}
.about-photo {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto 28px auto;
  border-radius: 12px;
}
