body.page_about {
  overflow-y: auto;
  height: auto;
}
body.page_about .home_layout {
  height: auto;
  min-height: 100svh;
}
body.page_about .home_content {
  flex: 1;
  height: auto;
  overflow: visible;
  padding-top: 24px;
  padding-bottom: 40px;
}
.about_container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.about_container h1 {
  text-align: center;
  color: #333;
  margin-top: 0;
  margin-bottom: 24px;
}
.about_hero_image {
  width: 100%;
  aspect-ratio: 3 / 4; /* UPDATED: Changed from 3/2 for portrait */
  background-size: cover;
  background-position: center; /* UPDATED: Changed from center */
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
  margin-bottom: 32px;
}
.about_content {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
}
.about_content h2 {
  color: #333;
  margin-top: 0;
  padding-bottom: 4px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 16px;
}
.about_content h2:not(:first-of-type) {
  margin-top: 24px;
}
.about_content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 18px 0;
}
.about_content p:last-child {
  margin-bottom: 0;
}
.about_cta_container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
  padding-bottom: 24px;
}
.about_cta_container .cta_button {
  width: 100%;
  max-width: 280px;
}
@media (min-width: 769px) {
  .about_content {
    padding: 40px;
  }
  .about_hero_image {
    max-height: 600px; /* UPDATED: Increased max height for portrait */
  }
  .about_cta_container {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

/* --- NEW: Signature Style --- */
.about_signature {
  font-size: 19px;
  font-weight: 600;
  color: #444;
  text-align: right;
  font-family: 'Georgia', serif; /* A more 'signature-like' font */
  margin: 24px 0 0 0;
}