.page {
  background: var(--off-white);
}

.pageHero {
  min-height: 420px;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.pageHeroBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628 0%, #112040 40%, #1a3a5c 100%);
}

.pageHeroPattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pageHeroGlow {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.08) 0%, transparent 70%);
}

.heroContainer {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pageHeroInner {
  display: block;
}

.pageHeroLeft {
  position: relative;
  max-width: 680px;
}

.pageHeroBreadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.pageHeroBreadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.pageHeroBreadcrumb a:hover {
  color: var(--gold);
}

.separator {
  color: rgba(255, 255, 255, 0.35);
}

.current {
  color: var(--gold);
}

.pageHeroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}

.pageHeroWave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.pageHeroWave svg {
  display: block;
  width: 100%;
}

.contentSection {
  padding: 72px 0;
}

.contentCard {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
  overflow: hidden;
}

.contentBody {
  padding: 2.5rem;
  color: var(--navy);
  line-height: 1.8;
}

.contentBody h2,
.contentBody h3,
.contentBody h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

.contentBody p,
.contentBody ul,
.contentBody ol {
  margin: 0 0 1rem;
}

.contentBody ul,
.contentBody ol {
  padding-left: 1.3rem;
}

@media (max-width: 768px) {
  .pageHero {
    min-height: 320px;
  }

  .contentBody {
    padding: 1.5rem;
  }
}
