
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #24354a;
  background: #f7f2eb;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
}
:root {
  --primary: #ea8f59;
  --primary-dark: #d3773f;
  --secondary: #0f5581;
  --text: #24354a;
  --muted: #647188;
  --soft: #f5ede3;
  --line: rgba(25, 55, 85, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 41, 66, 0.10);
  --radius: 28px;
}
.section-label,
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid rgba(15, 85, 129, 0.22);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255,255,255,0.5);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}
nav#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 36px;
  background: rgba(247, 242, 235, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}
nav#nav.scrolled {
  border-color: rgba(25, 55, 85, 0.08);
  box-shadow: 0 16px 30px rgba(12, 27, 44, 0.06);
}
.nav-logo {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 0.92;
  color: var(--secondary);
  letter-spacing: -0.05em;
}
.nav-logo span { display: block; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 0.92rem;
  color: var(--secondary);
  border-radius: 999px;
}
.nav-links a:hover { background: rgba(15, 85, 129, 0.06); }
.nav-cta {
  padding: 14px 26px;
  background: var(--secondary);
  color: #fff !important;
  font-weight: 800;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 36px 24px;
  background: rgba(247, 242, 235, 0.96);
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(25, 55, 85, 0.08);
  color: var(--secondary);
  font-weight: 700;
}
.hero {
  position: relative;
  padding: 34px 0 70px;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 85, 129, 0.06), rgba(15, 85, 129, 0.18), rgba(15, 85, 129, 0.06));
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 44px;
  align-items: stretch;
  margin-top: 20px;
}
.hero-copy {
  padding: 42px 8px 0 0;
}
.hero-copy h1 {
  margin-top: 28px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.06em;
  color: var(--secondary);
}
.hero-description {
  max-width: 760px;
  margin-top: 22px;
  color: var(--secondary);
  font-size: 1.06rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #f89a45, #ef7f2a);
  color: #fff;
  box-shadow: 0 18px 30px rgba(239, 127, 42, 0.18);
}
.btn-secondary {
  border: 2px solid rgba(15, 85, 129, 0.28);
  color: var(--secondary);
  background: transparent;
}
.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-2px); }
.hero-address {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 380px;
  margin-top: 44px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 40px rgba(17, 41, 66, 0.08);
}
.hero-address__thumb {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  flex: 0 0 auto;
  background: #eadac5;
}
.hero-address__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-address__title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.hero-address__text {
  margin-top: 8px;
  color: var(--secondary);
  font-size: 0.96rem;
  line-height: 1.35;
}
.hero-media {
  position: relative;
  min-height: 760px;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  background: #d8c7b2;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 85, 129, 0.08), rgba(15, 85, 129, 0));
}
.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-badge,
.hero-badge-secondary {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 22px 40px rgba(9, 38, 61, 0.20);
}
.hero-badge {
  left: -56px;
  top: 44px;
}
.hero-badge-secondary {
  right: -18px;
  bottom: 24px;
}
.hero-badge__icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #fff4ea;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
}
.hero-badge strong,
.hero-badge-secondary strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1;
}
.hero-badge span,
.hero-badge-secondary span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.15;
}
.section-block {
  padding: 86px 0;
}
.quote-section {
  padding: 34px 0 16px;
}
.quote-shell {
  padding: 34px 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(25, 55, 85, 0.10);
}
.quote-section blockquote p {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--secondary);
  line-height: 1.75;
}
.quote-author {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about {
  padding: 86px 0 24px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}
.about-media {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: #e5d7c8;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
}
.about-card h3 {
  font-size: 1.6rem;
  color: var(--secondary);
}
.about-card p {
  margin-top: 10px;
  color: var(--muted);
}
.about-copy h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  color: var(--secondary);
}
.about-copy p {
  margin-top: 18px;
  color: var(--muted);
}
.about-note {
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 3px solid var(--primary);
  border-radius: 0 22px 22px 0;
  background: rgba(255,255,255,0.66);
  color: var(--secondary);
}
.services {
  background: rgba(255,255,255,0.35);
}
.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}
.section-head h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  color: var(--secondary);
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
}
.services-grid,
.testimonials-grid,
.blog-grid,
.steps-grid,
.details-grid {
  display: grid;
  gap: 22px;
}
.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card {
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(18, 42, 66, 0.08);
  border: 1px solid rgba(15, 85, 129, 0.08);
}
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(234, 143, 89, 0.15);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 900;
}
.service-card h3 {
  margin-top: 18px;
  font-size: 1.4rem;
  color: var(--secondary);
}
.service-card p {
  margin-top: 12px;
  color: var(--muted);
}
.service-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial-card {
  padding: 30px 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fbf8f3);
  border: 1px solid rgba(15, 85, 129, 0.08);
  box-shadow: 0 14px 32px rgba(18, 42, 66, 0.06);
}
.testimonial-stars {
  color: var(--primary);
  letter-spacing: 0.16em;
  font-size: 0.88rem;
  font-weight: 900;
}
.testimonial-text {
  margin-top: 18px;
  color: var(--secondary);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(15, 85, 129, 0.10);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.testimonial-author-info strong {
  display: block;
  color: var(--secondary);
  font-size: 0.95rem;
}
.testimonial-author-info span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.pain-section {
  padding: 86px 0;
}
.pain-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
}
.pain-copy,
.pain-cta-box {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 85, 129, 0.08);
}
.pain-copy h2,
.pain-cta-box h3 {
  margin-top: 18px;
  color: var(--secondary);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}
.pain-copy > p,
.pain-cta-box > p {
  margin-top: 16px;
  color: var(--muted);
}
.pain-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  list-style: none;
}
.pain-list li {
  position: relative;
  padding-left: 26px;
  color: var(--secondary);
}
.pain-list li::before {
  content: '\\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}
.pain-cta-box .btn-primary { margin-top: 22px; }
.blog {
  background: rgba(255,255,255,0.35);
}
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 85, 129, 0.08);
  box-shadow: 0 16px 40px rgba(18, 42, 66, 0.07);
}
.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, #f0c79b, #f5e5d3 45%, #dbe9f2);
}
.blog-card-img svg { width: 100%; height: 100%; }
.blog-card-body {
  padding: 24px 24px 16px;
}
.blog-card-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 85, 129, 0.08);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-body h3 {
  margin-top: 14px;
  font-size: 1.25rem;
  color: var(--secondary);
}
.blog-card-body p {
  margin-top: 10px;
  color: var(--muted);
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 24px 24px;
  margin-top: auto;
}
.blog-card-footer span {
  color: var(--muted);
  font-size: 0.82rem;
}
.blog-card-footer a {
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
}
.approach-inner {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
}
.approach-left {
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(15, 85, 129, 0.08);
  box-shadow: 0 14px 32px rgba(18, 42, 66, 0.06);
}
.approach-left h2 {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  color: var(--secondary);
}
.approach-left p {
  margin-top: 16px;
  color: var(--muted);
}
.approach-grid {
  display: grid;
  gap: 16px;
}
.approach-item {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 85, 129, 0.08);
}
.approach-item h3 {
  color: var(--secondary);
  font-size: 1.18rem;
}
.approach-item p {
  margin-top: 10px;
  color: var(--muted);
}
.steps {
  padding: 86px 0;
}
.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.step-card {
  padding: 28px 22px;
  border-radius: 28px;
  background: #fff;
  text-align: left;
  border: 1px solid rgba(15, 85, 129, 0.08);
  box-shadow: 0 14px 32px rgba(18, 42, 66, 0.06);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(234, 143, 89, 0.15);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 900;
}
.step-card h3 {
  margin-top: 16px;
  color: var(--secondary);
  font-size: 1.2rem;
}
.step-card p {
  margin-top: 10px;
  color: var(--muted);
}
.details-section {
  background: rgba(255,255,255,0.35);
}
.details-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.detail-item,
.details-bio {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 85, 129, 0.08);
  box-shadow: 0 14px 32px rgba(18, 42, 66, 0.06);
}
.detail-item h3,
.details-bio h3 {
  font-size: 1.2rem;
  color: var(--secondary);
}
.detail-item p,
.details-bio p {
  margin-top: 10px;
  color: var(--muted);
}
.contact {
  padding: 94px 0 100px;
}
.contact-inner {
  padding: 38px;
  border-radius: 34px;
  background: #0f5581;
  color: #fff;
  box-shadow: 0 26px 60px rgba(9, 38, 61, 0.18);
}
.contact-inner .section-label {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #ffe1c7;
}
.contact h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}
.contact > p,
.contact-inner > p {
  margin-top: 16px;
  color: rgba(255,255,255,0.82);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.76);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 0.96rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.contact-info-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
}
.contact-info-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffe1c7;
}
.contact-info-card span,
.contact-info-card a {
  display: block;
  margin-top: 8px;
  color: #fff;
}
footer {
  padding: 28px 36px 48px;
  color: #6d7686;
  text-align: center;
  font-size: 0.82rem;
}
footer a { color: var(--secondary); font-weight: 700; }
@media (max-width: 1180px) {
  .hero-layout,
  .about-layout,
  .pain-inner,
  .approach-inner { grid-template-columns: 1fr; }
  .hero-media { min-height: 620px; }
  .hero-badge { left: 18px; }
  .hero-badge-secondary { right: 18px; }
  .services-grid,
  .blog-grid,
  .testimonials-grid,
  .steps-grid,
  .details-grid,
  .contact-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  nav#nav { padding: 18px 20px; }
  .page-shell { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-copy { padding-top: 10px; }
  .hero-copy h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .hero-media { min-height: 420px; border-radius: 28px; }
  .hero-badge,
  .hero-badge-secondary {
    position: static;
    margin-top: 16px;
    width: fit-content;
  }
  .services-grid,
  .blog-grid,
  .testimonials-grid,
  .steps-grid,
  .details-grid,
  .contact-form,
  .contact-info { grid-template-columns: 1fr; }
  .contact-form button { justify-self: stretch; }
  .btn-primary,
  .btn-secondary { width: 100%; }
}
  

/* ============================================================
   BLOG CSS - Generated for Codex Missioncap
   ============================================================ */
.nav-back {
    display: inline-flex; align-items: center; gap: 8px;
    color: #6b6b7a; font-size: 0.85rem; text-decoration: none;
    margin-bottom: 24px;
}
.nav-back:hover { color: #5b8a72; }
.article-hero {
    position: relative; min-height: 340px;
    display: flex; align-items: flex-end; padding: 40px 5%;
}
.article-hero .overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.85); }
.article-hero h1 {
    position: relative; z-index: 1; color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; line-height: 1.2;
}
.article-hero .tag {
    position: relative; z-index: 1;
    display: inline-block; padding: 4px 14px; border-radius: 20px;
    background: rgba(91,138,114, 0.2);
    color: #5b8a72; font-size: 0.8rem; font-weight: 500;
    margin-bottom: 16px;
}
.article-body {
    max-width: 720px; margin: 0 auto; padding: 48px 24px 60px;
    font-size: 1.05rem; line-height: 1.8; color: #2d2d3a;
}
.article-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem; font-weight: 500; margin: 40px 0 16px;
    color: #1a1a2e;
}
.article-body blockquote {
    border-left: 3px solid #5b8a72; padding: 16px 24px;
    margin: 32px 0; background: #f8faf9; border-radius: 0 8px 8px 0;
    font-style: italic; color: #6b6b7a;
}
.article-cta {
    text-align: center; padding: 48px 24px;
    background: #f8faf9; border-radius: 12px; margin: 40px 0;
}
.article-cta a {
    display: inline-block; padding: 14px 36px; border-radius: 30px;
    background: #5b8a72; color: #fff; text-decoration: none;
    font-weight: 500; transition: transform 0.2s;
}
.article-cta a:hover { transform: translateY(-2px); }
@media (max-width: 768px) {
    .article-hero { min-height: 260px; padding: 24px 5%; }
    .article-body { padding: 32px 16px 48px; font-size: 1rem; }
}


/* ============================================================
   ELEMENTOR OVERRIDES - Generated for Codex Missioncap
   ============================================================ */
.elementor-section.elementor-section-full_width > .elementor-container {
    max-width: 100% !important; padding: 0 !important;
}
.elementor-column-wrap, .elementor-widget-wrap {
    padding: 0 !important;
}
/* Navigation overrides */
nav#nav {
    position: fixed !important; top: 0 !important; left: 0 !important;
    right: 0 !important; z-index: 9999 !important;
    background: transparent !important; transition: background 0.3s !important;
}
nav#nav.scrolled {
    background: #f8faf9 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}
.nav-blog {
    background: rgba(248,250,249, 0.95) !important;
}
/* Mobile menu hidden by default */
.nav-links { display: flex !important; }
.hamburger { display: none !important; }
.mobile-menu { display: none !important; }
@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex !important; }
    .mobile-menu.active { display: flex !important; }
}


/* ─── Internal Pages (multipage) ─── */
.internal-page .page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.internal-page .page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #5b8a7215 0%, transparent 70%);
  border-radius: 50%;
}
.internal-page .page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.internal-page .page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.internal-page .page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  font-family: 'Inter', sans-serif;
  color: #2d2d3a;
  line-height: 1.8;
  font-size: 1.05rem;
}
.internal-page .page-body h2 {
  font-family: 'Playfair Display', serif;
  color: #1a1a2e;
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  font-weight: 600;
}
.internal-page .page-body h3 {
  font-family: 'Playfair Display', serif;
  color: #5b8a72;
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
  font-weight: 500;
}
.internal-page .page-body p {
  margin: 0 0 1.2rem;
}
.internal-page .page-body ul, .internal-page .page-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.internal-page .page-body li {
  margin-bottom: 0.5rem;
}
.internal-page .page-body blockquote {
  border-left: 4px solid #5b8a72;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #5b8a7208;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.internal-page .page-body strong {
  color: #1a1a2e;
}
.internal-page .page-cta {
  text-align: center;
  margin: 3rem 0 1rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #5b8a7208 0%, #5b8a7215 100%);
  border-radius: 16px;
}
.internal-page .page-cta__btn {
  display: inline-block;
  padding: 16px 40px;
  background: #5b8a72;
  color: #fff !important;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #5b8a7230;
}
.internal-page .page-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #5b8a7240;
}
/* Breadcrumb */
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #5b8a72; }
.breadcrumb span { margin: 0 0.3rem; }

/* Table of Contents (auto-generated by JS) */
.page-toc {
  background: #5b8a7208;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  border-left: 4px solid #5b8a72;
}
.page-toc h3 {
  font-size: 0.9rem;
  color: #5b8a72;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.page-toc ul { list-style: none; padding: 0; margin: 0; }
.page-toc li { margin-bottom: 0.4rem; }
.page-toc a {
  color: #2d2d3a;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0.7;
}
.page-toc a:hover { color: #5b8a72; opacity: 1; }

@media (max-width: 768px) {
  .internal-page .page-hero { padding: 60px 16px 40px; }
  .internal-page .page-body { padding: 40px 16px 60px; }
  .internal-page .page-body h2 { font-size: 1.5rem; }
  .page-toc { padding: 1rem 1.2rem; }
}
