@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;800&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
  --primary: #1A237E;
  --primary-dark: #0D1459;
  --primary-light: #283593;
  --accent: #66BB6A;
  --accent-dark: #43A047;
  --cream: #FFF8E1;
  --cream-mid: #F5EDD3;
  --charcoal: #757575;
  --charcoal-dark: #424242;
  --text: #2D2D2D;
  --white: #FFFFFF;
  --border: #DDD5C0;
  --shadow-sm: 0 2px 10px rgba(26,35,126,0.08);
  --shadow-md: 0 6px 28px rgba(26,35,126,0.13);
  --shadow-lg: 0 14px 56px rgba(26,35,126,0.18);
  --font-h: 'Raleway', sans-serif;
  --font-b: 'Lato', sans-serif;
  --tr: 0.3s ease;
  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 1.875rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--charcoal-dark); font-size: 1rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; color: var(--charcoal-dark); font-size: 1rem; line-height: 1.7; }

.container-main { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.sec { padding: 80px 0; }
.sec--sm { padding: 56px 0; }
.sec--lg { padding: 104px 0; }
.sec--cream { background-color: var(--cream); }
.sec--primary { background-color: var(--primary); }
.sec--dark { background-color: var(--primary-dark); }

.sec--primary h1, .sec--primary h2, .sec--primary h3, .sec--primary h4 { color: var(--white); }
.sec--primary p, .sec--primary li { color: rgba(255,255,255,0.82); }
.sec--dark h1, .sec--dark h2, .sec--dark h3 { color: var(--white); }
.sec--dark p { color: rgba(255,255,255,0.78); }

.site-header {
  background-color: var(--primary);
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.22); }
.site-header .navbar { padding: 0 16px; min-height: 72px; }
.navbar-brand {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--white) !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: opacity var(--tr);
}
.navbar-brand:hover { opacity: 0.85; color: var(--white) !important; }
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.78) !important;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 26px 14px !important;
  transition: color var(--tr);
  position: relative;
}
.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active { color: var(--white) !important; }
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,0.35); padding: 6px 10px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.78%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-footer {
  background-color: var(--primary-dark);
  padding: 64px 0 0;
}
.site-footer h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.site-footer h5 {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.site-footer p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 0.35rem; line-height: 1.6; }
.site-footer a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--tr); }
.site-footer a:hover { color: var(--accent); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-editorial {
  font-size: 0.78rem !important;
  color: var(--accent) !important;
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(102,187,106,0.3);
  padding-top: 0.75rem;
  margin-top: 0.75rem !important;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.38); margin: 0; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent);
  z-index: 9999;
  padding: 18px 24px;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.28);
  display: none;
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.55;
}
.cookie-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-accent-lmn {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background var(--tr), border-color var(--tr);
  cursor: pointer;
  display: inline-block;
}
.btn-accent-lmn:hover { background-color: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); text-decoration: none; }

.btn-outline-lmn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: background var(--tr), border-color var(--tr), color var(--tr);
  cursor: pointer;
  display: inline-block;
}
.btn-outline-lmn:hover { background-color: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75); color: var(--white); text-decoration: none; }

.btn-primary-lmn {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: background var(--tr), border-color var(--tr);
  cursor: pointer;
  display: inline-block;
}
.btn-primary-lmn:hover { background-color: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); text-decoration: none; }

.btn-outline-dark-lmn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--radius);
  transition: background var(--tr), color var(--tr);
  cursor: pointer;
  display: inline-block;
}
.btn-outline-dark-lmn:hover { background-color: var(--primary); color: var(--white); text-decoration: none; }

.btn-outline-white-lmn {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: background var(--tr), border-color var(--tr);
  cursor: pointer;
  display: inline-block;
}
.btn-outline-white-lmn:hover { background-color: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); color: var(--white); text-decoration: none; }

.hero-section {
  position: relative;
  min-height: 65vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(13,20,89,0.84) 0%, rgba(26,35,126,0.56) 55%, rgba(26,35,126,0.38) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-content h1 {
  color: var(--white);
  font-size: 3.25rem;
  font-weight: 800;
  text-shadow: 0 2px 28px rgba(0,0,0,0.28);
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}
.hero-content .hero-sub {
  color: rgba(255,255,255,0.86);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}
.hero-badge {
  display: inline-block;
  background: rgba(102,187,106,0.18);
  border: 1px solid rgba(102,187,106,0.55);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}

.page-banner {
  background-color: var(--primary);
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.025);
  border-radius: 50%;
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(102,187,106,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.page-banner h1 { color: var(--white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-banner p { color: rgba(255,255,255,0.75); max-width: 600px; position: relative; z-index: 1; }
.breadcrumb-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.breadcrumb-wrap a { color: var(--accent); font-size: 0.78rem; font-family: var(--font-h); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.breadcrumb-wrap .bc-sep { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.breadcrumb-wrap .bc-cur { color: rgba(255,255,255,0.65); font-size: 0.78rem; font-family: var(--font-h); text-transform: uppercase; letter-spacing: 0.5px; }

.sec-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}
.sep-line {
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  width: 44px;
  margin: 0.6rem 0 1.5rem;
}
.sep-line--center { margin-left: auto; margin-right: auto; }
.sep-line--white { background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); }

.sec-head { margin-bottom: 2.75rem; }
.sec-head h2 { margin-bottom: 0.65rem; }
.sec-head p { max-width: 620px; font-size: 1.025rem; }
.sec-head--center { text-align: center; }
.sec-head--center p { margin-left: auto; margin-right: auto; }

.two-col-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.two-col-img img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 0.55s ease; }
.two-col-img:hover img { transform: scale(1.03); }
.two-col-img--sm img { height: 230px; }

.editorial-intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.editorial-intro-inner h2 { font-size: 2.1rem; margin-bottom: 1rem; }

.topic-bullet-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.topic-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-dark);
  font-size: 0.96rem;
  line-height: 1.65;
}
.topic-bullet-list li:last-child { border-bottom: none; }
.topic-bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.topic-bullet-list li strong { color: var(--primary); font-weight: 700; }

.misconception-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2px;
}
.misconception-card__body { padding: 40px 48px; }
.misconception-card__body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.misconception-card__img img { width: 100%; height: 340px; object-fit: cover; }

.timeline-period {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  padding: 4px 12px;
  background: rgba(102,187,106,0.15);
  border-radius: 3px;
}

.hist-img img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar-card__img { overflow: hidden; flex-shrink: 0; }
.pillar-card__img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.55s ease; display: block; }
.pillar-card:hover .pillar-card__img img { transform: scale(1.05); }
.pillar-card__body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.pillar-card__body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.pillar-card__body p { font-size: 0.93rem; flex: 1; margin-bottom: 1.25rem; }
.pillar-card__link {
  font-family: var(--font-h);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--tr), color var(--tr);
  margin-top: auto;
}
.pillar-card__link::after { content: '→'; }
.pillar-card__link:hover { gap: 10px; color: var(--primary); }

.faq-preview-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }

.faq-acc .card {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
  background: transparent;
  box-shadow: none !important;
}
.faq-acc .card:first-child { border-top: 1px solid var(--border); }
.faq-acc .card-header { background: transparent; border: none; padding: 0; }
.faq-acc .card-header .qa-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 40px 18px 0;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  display: block;
  line-height: 1.45;
  transition: color var(--tr);
}
.faq-acc .card-header .qa-btn:focus { outline: none; box-shadow: none; }
.faq-acc .card-header .qa-btn::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent-dark);
  line-height: 1;
}
.faq-acc .card-header .qa-btn[aria-expanded="true"] { color: var(--accent-dark); }
.faq-acc .card-header .qa-btn[aria-expanded="true"]::after { content: '−'; }
.faq-acc .card-body { padding: 0 0 18px; }
.faq-acc .card-body p { font-size: 0.96rem; }

.term-sidebar {
  background: var(--cream);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 26px;
  position: sticky;
  top: 88px;
}
.term-sidebar h3 { font-size: 0.88rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
.term-item { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.term-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.term-item dt { font-family: var(--font-h); font-weight: 700; color: var(--primary); font-size: 0.88rem; margin-bottom: 0.25rem; }
.term-item dd { color: var(--charcoal-dark); font-size: 0.86rem; line-height: 1.6; margin: 0; }

.contact-wrap { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.contact-img img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 28px; }
.contact-info p { font-size: 0.95rem; color: var(--charcoal-dark); margin-bottom: 0.4rem; }
.contact-info strong { color: var(--primary); font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 0.4rem; margin-top: 1.25rem; }
.contact-info strong:first-child { margin-top: 0; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-lbl { display: block; font-family: var(--font-h); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.form-inp {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 15px;
  font-family: var(--font-b);
  font-size: 0.96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 1.25rem;
  display: block;
}
.form-inp:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,35,126,0.09); }
textarea.form-inp { resize: vertical; min-height: 140px; }

.principles-block {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  border-top: 3px solid var(--primary);
  margin-top: 28px;
}
.principles-block h4 { font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.principles-list { list-style: none; padding: 0; margin: 0; }
.principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}
.principles-list li:last-child { border-bottom: none; }
.principles-list li::before { content: '—'; color: var(--accent-dark); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.mission-panel {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.mission-panel h3 { color: var(--white); font-size: 1rem; letter-spacing: 1px; margin-bottom: 1.5rem; text-transform: uppercase; }
.mission-list { list-style: none; padding: 0; margin: 0; }
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
  line-height: 1.65;
}
.mission-list li:last-child { border-bottom: none; }
.mission-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

.contact-prev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-prev-img { position: relative; min-height: 320px; }
.contact-prev-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-prev-text {
  background: var(--primary);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-prev-text h3 { color: var(--white); font-size: 1.65rem; margin-bottom: 1rem; }
.contact-prev-text p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 0.97rem; }

.final-cta-section {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(13,20,89,0.83); z-index: 1; }
.final-cta-content {
  position: relative;
  z-index: 2;
  padding: 72px 24px;
  text-align: center;
  width: 100%;
}
.final-cta-content h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 1.25rem; }
.final-cta-content p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 2.25rem; font-size: 1.025rem; }

.legal-body { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.legal-body h2 { font-size: 1.25rem; margin-top: 2.5rem; margin-bottom: 0.65rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body p { font-size: 0.96rem; color: var(--charcoal-dark); }
.legal-body ul { margin-bottom: 1rem; }
.legal-body li { font-size: 0.96rem; color: var(--charcoal-dark); }
.legal-meta { font-size: 0.82rem; color: var(--charcoal); font-style: italic; margin-bottom: 2.5rem; }

.ty-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.ty-icon {
  width: 64px;
  height: 64px;
  background: rgba(102,187,106,0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.ty-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ty-section h1 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.ty-section p { color: var(--charcoal-dark); max-width: 460px; margin: 0 auto 2rem; }

.nf-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--cream);
}
.nf-num {
  font-family: var(--font-h);
  font-size: 9rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.09;
  line-height: 1;
  display: block;
  letter-spacing: -6px;
  margin-bottom: -2.5rem;
}
.nf-section h1 { font-size: 2rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.nf-section p { max-width: 440px; margin: 0 auto 2rem; position: relative; z-index: 1; }

.about-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.faq-full-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in--d1 { transition-delay: 0.14s; }
.fade-in--d2 { transition-delay: 0.28s; }
.fade-in--d3 { transition-delay: 0.42s; }

.about-dim-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
  height: 100%;
  transition: transform var(--tr), box-shadow var(--tr);
}
.about-dim-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-dim-num {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -2px;
}
.about-dim-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.about-dim-card p { font-size: 0.92rem; margin-bottom: 0; }

.about-quote {
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  background: rgba(255,255,255,0.07);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.about-quote p {
  font-family: var(--font-h);
  font-size: 1.08rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.about-quote cite {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.text-accent-c { color: var(--accent-dark); }
.inline-link { color: var(--accent-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.inline-link:hover { color: var(--primary); }

@media (max-width: 1100px) {
  .faq-preview-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .faq-full-grid { grid-template-columns: 1fr; }
  .term-sidebar { position: static; }
  .contact-prev-inner { grid-template-columns: 1fr; }
  .contact-prev-img { min-height: 260px; }
}

@media (max-width: 991px) {
  .two-col-img img { height: 300px; }
  .about-img img { height: 360px; }
}

@media (max-width: 767px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .sec { padding: 56px 0; }
  .sec--lg { padding: 72px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-section { min-height: 55vh; }
  .contact-form-wrap { padding: 26px 20px; }
  .mission-panel { padding: 28px 24px; }
  body { padding-top: 66px; }
  .hist-img img { height: 220px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content .hero-sub { font-size: 0.96rem; }
  .container-main { padding: 0 16px; }
  .contact-prev-text { padding: 36px 28px; }
  .final-cta-content h2 { font-size: 1.65rem; }
}
