@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #004D40;
  --primary-dark: #003328;
  --primary-light: #00695c;
  --grey-light: #E0E0E0;
  --grey-mid: #BDBDBD;
  --grey-dark: #757575;
  --gold: #B8860B;
  --gold-light: #d4a017;
  --sage: #81C784;
  --sage-dark: #5a9e5d;
  --white: #ffffff;
  --off-white: #F5F5F0;
  --text-dark: #1a1a1a;
  --text-mid: #333333;
  --text-light: #555555;
  --border: #D0D0C8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.14);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-deep: 0 12px 60px rgba(0,0,0,0.22);
  --radius: 3px;
  --radius-md: 6px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-family: 'Source Sans 3', sans-serif;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--mid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section--dark h2 {
  color: var(--sage);
}

.section--dark h3 {
  color: var(--grey-light);
}

.section--dark p {
  color: var(--grey-light);
}

.section--dark li {
  color: var(--grey-light);
}

.section--grey {
  background: var(--grey-light);
}

.section--offwhite {
  background: var(--off-white);
}

.section--gold-accent {
  background: var(--primary-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.section--white {
  background: var(--white);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.btn {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--grey-light);
}

.btn--outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--sage);
  border-color: var(--sage);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 32px 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.divider--light {
  background: var(--sage);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-2--60-40 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: center;
}

.grid-2--40-60 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card__text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card__link:hover {
  color: var(--gold);
}

.info-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.info-panel--teal {
  border-left-color: var(--primary);
  background: var(--off-white);
}

.info-panel--sage {
  border-left-color: var(--sage);
}

.info-panel h3 {
  margin-bottom: 10px;
}

.info-panel p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.definition-box {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 24px;
  border: 1px solid rgba(184,134,11,0.3);
}

.definition-box__term {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.definition-box p {
  color: var(--grey-light);
  font-size: 0.95rem;
  margin: 0;
}

.quote-block {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.quote-block--dark {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--sage);
}

.quote-block--dark p {
  color: var(--grey-light);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.stat-strip__item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-strip__item:last-child {
  border-right: none;
}

.stat-strip__value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.stat-strip__label {
  font-size: 0.85rem;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
}

.data-table thead {
  background: var(--primary);
  color: var(--white);
}

.data-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.data-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.data-table tbody tr:hover {
  background: rgba(0,77,64,0.06);
}

.data-table tbody td {
  padding: 14px 20px;
  color: var(--text-mid);
  vertical-align: top;
}

.data-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.myth-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.myth-card__myth {
  background: #FFF8E1;
  border-left: 4px solid #E57373;
  padding: 20px 24px;
}

.myth-card__fact {
  background: #E8F5E9;
  border-left: 4px solid var(--sage);
  padding: 20px 24px;
}

.myth-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.myth-card__badge--myth {
  color: #C62828;
}

.myth-card__badge--fact {
  color: var(--sage-dark);
}

.myth-card p {
  font-size: 0.93rem;
  margin: 0;
  color: var(--text-dark);
}

.step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.step-list__item {
  counter-increment: step-counter;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.step-list__item:last-child {
  border-bottom: none;
}

.step-list__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-list__num::before {
  content: counter(step-counter);
}

.step-list__content h3 {
  margin-bottom: 6px;
}

.step-list__content p {
  margin: 0;
  font-size: 0.95rem;
}

.welfare-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sage);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.welfare-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.welfare-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welfare-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--sage);
}

.welfare-card h3 {
  margin-bottom: 12px;
}

.welfare-card p {
  font-size: 0.93rem;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question.active {
  color: var(--primary);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.faq-question.active .faq-question__icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(45deg);
}

.faq-question__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--text-dark);
  transition: fill 0.25s ease;
}

.faq-question.active .faq-question__icon svg {
  fill: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 600px;
}

.faq-answer__inner {
  padding-bottom: 24px;
}

.faq-answer__inner p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.disclaimer-block {
  background: rgba(0,77,64,0.06);
  border: 1px solid rgba(0,77,64,0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 48px;
}

.disclaimer-block--warning {
  background: rgba(184,134,11,0.06);
  border-color: rgba(184,134,11,0.25);
  border-left-color: var(--gold);
}

.disclaimer-block p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.disclaimer-block strong {
  color: var(--text-dark);
}

.mission-block {
  background: var(--primary-dark);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.mission-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--sage));
}

.mission-block h2 {
  color: var(--sage);
  margin-bottom: 20px;
}

.mission-block p {
  color: var(--grey-light);
  font-size: 1rem;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-light);
  font-family: 'Playfair Display', serif;
}

.legal-section h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 24px;
}

.legal-section p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--text-mid);
}

.legal-section ul {
  margin-bottom: 14px;
}

.legal-section li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.warning-banner {
  background: var(--primary);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.warning-banner h2 {
  color: var(--gold);
  margin-bottom: 16px;
}

.warning-banner p {
  color: var(--grey-light);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.glossary-rail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}

.glossary-rail h3 {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.glossary-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--off-white);
}

.glossary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.glossary-item__term {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.glossary-item__def {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  border-top: 3px solid var(--gold);
  padding: 20px 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--grey-light);
  flex: 1;
  min-width: 0;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.cookie-btn--accept {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.cookie-btn--accept:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--grey-light);
  border-color: var(--grey-mid);
}

.cookie-btn--reject:hover {
  border-color: var(--grey-light);
  color: var(--white);
}

.cookie-btn--info {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.cookie-btn--info:hover {
  background: var(--gold);
  color: var(--white);
}

.highlight-text {
  color: var(--gold);
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pros-cons__col {
  padding: 28px;
}

.pros-cons__col--pros {
  background: #F1F8E9;
  border-right: 1px solid var(--border);
}

.pros-cons__col--cons {
  background: #FFF8E1;
}

.pros-cons__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
}

.pros-cons__col--pros .pros-cons__title {
  color: var(--sage-dark);
  border-color: var(--sage);
}

.pros-cons__col--cons .pros-cons__title {
  color: #B8860B;
  border-color: var(--gold);
}

.pros-cons ul {
  list-style: none;
  padding: 0;
}

.pros-cons ul li {
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-mid);
}

.pros-cons__col--pros ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--sage-dark);
}

.pros-cons__col--cons ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card__body {
  padding: 28px;
}

.blog-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.blog-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card__link:hover {
  color: var(--gold);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 16px 0;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb__sep {
  color: var(--grey-mid);
}

.article-header {
  background: var(--primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.article-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--sage));
}

.article-header h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 16px;
}

.article-header .breadcrumb a {
  color: var(--sage);
}

.article-header .breadcrumb {
  color: var(--grey-light);
  margin-bottom: 20px;
}

.article-header .breadcrumb__sep {
  color: rgba(255,255,255,0.4);
}

.article-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}

.article-body {
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1.4em;
  font-size: 1.02rem;
}

.article-body h2 {
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.article-body h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.4em;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,77,64,0.1);
  background: var(--white);
}

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-info-block {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  height: 100%;
}

.contact-info-block h2 {
  color: var(--sage);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-info-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 4px;
}

.contact-info-item__value {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}

.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px;
}

.thankyou-inner {
  max-width: 560px;
}

.thankyou-inner h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.thankyou-inner p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.policy-hero {
  background: var(--primary);
  padding: 60px 0;
  border-bottom: 3px solid var(--gold);
}

.policy-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.policy-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.page-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold) 40%, var(--sage) 100%);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 640px;
}

.page-hero .section-label {
  color: var(--sage);
  border-color: var(--sage);
}

.about-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 3px solid rgba(184,134,11,0.3);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.full-width-img-section {
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.full-width-img-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.7;
}

.full-width-img-section__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0,51,40,0.85) 50%, transparent 100%);
}

.full-width-img-section__overlay .container {
  max-width: 1440px;
}

.full-width-img-section__overlay h2 {
  color: var(--white);
  max-width: 500px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.full-width-img-section__overlay p {
  color: rgba(255,255,255,0.8);
  max-width: 460px;
  margin-top: 12px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-mid);
  vertical-align: top;
}

.comparison-table tr:nth-child(even) td {
  background: var(--off-white);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  width: 220px;
}

.cta-section {
  background: var(--primary-dark);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--gold);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--sage);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 900px) {
  .grid-2, .grid-2--60-40, .grid-2--40-60 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .pros-cons__col--pros {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-form {
    padding: 32px 24px;
  }
  .contact-info-block {
    padding: 32px 24px;
  }
  .mission-block {
    padding: 32px 28px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .container, .container--narrow, .container--mid {
    padding: 0 1rem;
  }
  .full-width-img-section img {
    height: 280px;
  }
  .about-img-wrap img {
    height: 280px;
  }
}
