@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2C3E50;
  --accent-orange: #E67E22;
  --accent-blue: #3498DB;
  --accent-green: #27AE60;
  --light-bg: #F4F6F8;
  --lighter-bg: #FAFBFC;
  --border-color: #DDE3EA;
  --text-body: #3D4A5C;
  --text-muted: #6B7A8D;
  --white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lora', serif;
  --radius: 4px;
  --shadow-card: 0 2px 12px rgba(44,62,80,0.08);
  --shadow-hover: 0 6px 24px rgba(44,62,80,0.14);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-orange);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

.text-accent-orange { color: var(--accent-orange); }
.text-accent-blue   { color: var(--accent-blue); }
.text-accent-green  { color: var(--accent-green); }
.text-muted         { color: var(--text-muted); }
.text-primary       { color: var(--primary); }
.text-white         { color: var(--white) !important; }

.bg-light   { background: var(--light-bg); }
.bg-lighter { background: var(--lighter-bg); }
.bg-primary { background: var(--primary); }
.bg-white   { background: var(--white); }

.border-top-accent-orange { border-top: 3px solid var(--accent-orange); }
.border-top-accent-blue   { border-top: 3px solid var(--accent-blue); }
.border-top-accent-green  { border-top: 3px solid var(--accent-green); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 12px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--accent-orange);
  margin: 16px 0 24px;
  border: none;
}

.section-divider.blue   { background: var(--accent-blue); }
.section-divider.green  { background: var(--accent-green); }
.section-divider.center { margin-left: auto; margin-right: auto; }

.btn-helora {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-helora:hover {
  background: #1a252f;
  border-color: #1a252f;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(44,62,80,0.22);
}

.btn-helora.btn-outline {
  background: transparent;
  color: var(--primary);
}

.btn-helora.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-helora.btn-orange {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.btn-helora.btn-orange:hover {
  background: #c96c10;
  border-color: #c96c10;
  color: var(--white);
}

.card-info {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card-info:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-info .card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.card-icon-orange { background: #FDF0E4; color: var(--accent-orange); }
.card-icon-blue   { background: #E8F4FD; color: var(--accent-blue); }
.card-icon-green  { background: #E8F8EF; color: var(--accent-green); }

.card-info h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.card-info p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(44,62,80,0.18);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-nav .brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav .brand span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background: #1a252f;
  padding: 16px 24px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a:hover { color: var(--accent-orange); }

.hero-block {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.97) 45%, rgba(44,62,80,0.7) 100%);
  z-index: 1;
}

.hero-block .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-block .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-block h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-block h1 em {
  font-style: normal;
  color: var(--accent-orange);
}

.hero-block p {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}

.edu-notice {
  background: var(--accent-orange);
  padding: 10px 0;
  text-align: center;
}

.edu-notice p {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col-layout.reverse {
  direction: rtl;
}

.two-col-layout.reverse > * {
  direction: ltr;
}

.two-col-layout .col-text { }

.two-col-layout .col-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}

.stat-strip .stat-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  background: var(--white);
}

.stat-strip .stat-item:last-child { border-right: none; }

.stat-strip .stat-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-strip .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stacked-blocks .block-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.stacked-blocks .block-item:last-child {
  border-bottom: none;
}

.block-item .block-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
}

.block-icon-orange { background: var(--accent-orange); }
.block-icon-blue   { background: var(--accent-blue); }
.block-icon-green  { background: var(--accent-green); }
.block-icon-dark   { background: var(--primary); }

.quote-block {
  border-left: 4px solid var(--accent-blue);
  padding: 16px 24px;
  background: #EBF5FB;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.quote-block p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--primary);
  margin: 0;
  line-height: 1.65;
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-blue);
  border-top: 2px solid var(--accent-blue);
  border-bottom: 2px solid var(--accent-blue);
  padding: 20px 0;
  margin: 32px 0;
  text-align: center;
  line-height: 1.4;
}

.image-gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.image-gallery-3 figure {
  margin: 0;
}

.image-gallery-3 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.image-gallery-3 figcaption {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.glossary-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.glossary-rail {
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 80px;
}

.glossary-rail h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.glossary-term {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.glossary-term:last-child { border-bottom: none; }

.glossary-term dt {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.glossary-term dd {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.alternating-section .alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.alternating-section .alt-row.reversed {
  direction: rtl;
}

.alternating-section .alt-row.reversed > * {
  direction: ltr;
}

.alternating-section .alt-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.text-enclosed {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--lighter-bg);
}

.accordion-visual .faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item .faq-question {
  background: var(--white);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-item .faq-question:hover {
  background: var(--light-bg);
}

.faq-item .faq-question h3 {
  font-size: 0.97rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary);
  padding-right: 16px;
}

.faq-item .faq-indicator {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-indicator {
  background: var(--accent-blue);
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  display: none;
  padding: 0 22px 18px;
  background: var(--white);
  border-top: 1px solid var(--border-color);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item .faq-answer p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-top: 14px;
  margin: 0;
}

.cta-block {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-block p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}

.cta-links a.cta-primary {
  background: var(--accent-orange);
  color: var(--white);
  border: 2px solid var(--accent-orange);
}

.cta-links a.cta-primary:hover {
  background: #c96c10;
  border-color: #c96c10;
  color: var(--white);
}

.cta-links a.cta-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-links a.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}

.disclaimer-block {
  background: #F4F6F8;
  border-left: 4px solid var(--accent-green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 40px 0 0;
}

.disclaimer-block p {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.disclaimer-block strong {
  color: var(--primary);
}

.info-context-block {
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent-green);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 56px;
}

.info-context-block h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.info-context-block ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}

.info-context-block ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  margin-bottom: 0;
}

.info-context-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.page-header {
  background: var(--primary);
  padding: 64px 0 48px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 560px;
  margin: 0;
}

.breadcrumb-bar {
  background: var(--light-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-bar nav {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb-bar a {
  color: var(--accent-blue);
  text-decoration: none;
}

.breadcrumb-bar a:hover { color: var(--accent-orange); }

.breadcrumb-bar span { color: var(--text-muted); margin: 0 6px; }

.wide-text-block {
  max-width: 780px;
  margin: 0 auto;
}

.wide-text-block p {
  font-size: 1.04rem;
  line-height: 1.8;
}

.site-footer {
  background: #1a252f;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand .brand-name span { color: var(--accent-orange); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-edu-msg {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--accent-orange); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-contact .contact-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  display: block;
  margin-top: 12px;
  margin-bottom: 2px;
}

.footer-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-policy-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-policy-links a:hover { color: rgba(255,255,255,0.75); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 3px solid var(--accent-orange);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  min-width: 200px;
}

.cookie-text strong { color: var(--white); }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.cookie-btn.accept {
  background: var(--accent-green);
  color: var(--white);
}

.cookie-btn.accept:hover { background: #1e8449; }

.cookie-btn.refuse {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn.refuse:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.cookie-btn.learn {
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
}

.cookie-btn.learn:hover {
  background: var(--accent-blue);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px 20px;
}

.blog-card-category {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 8px;
}

.blog-card h2 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card .card-meta {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card .card-meta a {
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 0.76rem;
  text-decoration: none;
}

.blog-card .card-meta a:hover { color: var(--accent-orange); }

.article-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.article-header {
  margin-bottom: 32px;
}

.article-meta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.article-meta span { display: flex; align-items: center; gap: 5px; }

.article-body p { font-size: 1.02rem; line-height: 1.82; }

.insight-box {
  background: #EBF5FB;
  border-left: 4px solid var(--accent-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 28px 0;
}

.insight-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.65;
}

.insight-box strong { color: var(--accent-blue); }

.infographic-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.infographic-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
}

.infographic-list li:last-child { border-bottom: none; }

.infographic-list .il-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infographic-list .il-text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-body);
}

.infographic-list .il-text strong {
  color: var(--primary);
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.step-blocks .step-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.step-blocks .step-item:hover { box-shadow: var(--shadow-hover); }

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.key-takeaways {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 36px;
  color: var(--white);
  margin-top: 40px;
}

.key-takeaways h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.key-takeaways ul {
  list-style: none;
  padding: 0;
}

.key-takeaways ul li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  padding-left: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  margin-bottom: 0;
}

.key-takeaways ul li:last-child { border-bottom: none; }

.key-takeaways ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.1rem;
}

.modular-sections .module {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.modular-sections .module h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-blue);
  display: inline-block;
}

.timeline-visual {
  position: relative;
  padding-left: 40px;
  margin: 32px 0;
}

.timeline-visual::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-blue);
}

.timeline-item h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.legal-doc h2 {
  font-size: 1.25rem;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.legal-doc h3 {
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-doc p { font-size: 0.95rem; line-height: 1.75; }

.legal-doc ul li { font-size: 0.95rem; }

.legal-doc ol { counter-reset: legal-counter; padding-left: 0; }

.legal-doc ol > li {
  counter-increment: legal-counter;
  list-style: none;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-doc ol > li::before {
  content: counter(legal-counter) '.';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-family: var(--font-heading);
  font-weight: 700;
}

.legal-meta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.definitions-list dt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 14px;
}

.definitions-list dd {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-left: 0;
  padding-left: 16px;
  border-left: 3px solid var(--border-color);
  line-height: 1.65;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
}

.cookie-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-body);
  vertical-align: top;
}

.cookie-table tr:nth-child(even) td { background: var(--lighter-bg); }

.alert-disclaimer {
  background: #FDF0E4;
  border: 1px solid #E67E22;
  border-left: 5px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.alert-disclaimer h2 {
  color: var(--accent-orange);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.alert-disclaimer p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-body);
}

.alert-disclaimer strong { color: var(--primary); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  font-size: 1rem;
}

.contact-info-text dt {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-text dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.contact-form-wrap {
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form-wrap h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(52,152,219,0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-disclaimer {
  background: #F4F6F8;
  border-left: 3px solid var(--accent-orange);
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.form-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
  font-family: var(--font-heading);
}

.map-placeholder {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(44,62,80,0.04) 24px, rgba(44,62,80,0.04) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(44,62,80,0.04) 24px, rgba(44,62,80,0.04) 25px);
}

.map-placeholder span { position: relative; z-index: 1; }

.map-pin {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--accent-orange);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.map-pin::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thank-you-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  padding: 80px 24px;
}

.thank-you-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-green);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-hover);
}

.thank-you-box .ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8F8EF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.thank-you-box h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.thank-you-box p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-mission-block {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: var(--white);
  margin: 40px 0;
}

.about-mission-block h3 {
  color: var(--accent-orange);
  margin-bottom: 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-mission-block h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-mission-block p {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.philosophy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.philosophy-list li:last-child { border-bottom: none; }

.philosophy-list li::before {
  content: '→';
  color: var(--accent-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.team-info {
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.team-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.team-card:last-child { border-bottom: none; }

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.team-card-info .role {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 2px;
}

.team-card-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

.filter-placeholder {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: var(--white);
  color: var(--text-muted);
  cursor: default;
  transition: var(--transition);
}

.filter-tag.active,
.filter-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.latest-posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.latest-posts-header h2 { margin-bottom: 0; }

.section-highlight {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 32px 0;
}

.wide-image-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.wide-image-block img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.wide-image-block .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(44,62,80,0.85), transparent);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}

.ingredient-card {
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-green);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 28px 0;
}

.ingredient-card h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-green);
  margin-bottom: 14px;
}

.ingredient-card ul {
  columns: 2;
  gap: 16px;
}

.ingredient-card ul li {
  font-size: 0.9rem;
  color: var(--text-body);
  break-inside: avoid;
}

.disclaimer-alert {
  background: #FDF0E4;
  border: 1px solid #E67E22;
  border-left: 5px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 0 32px;
}

.disclaimer-alert h2 {
  color: var(--accent-orange);
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.disclaimer-alert p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-body);
}

.disclaimer-alert strong { color: var(--primary); }

.info-panel {
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}

.info-panel h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--primary);
}

.info-panel p { font-size: 0.94rem; margin-bottom: 0; }

.info-panel--blue { border-left-color: var(--accent-blue); }
.info-panel--orange { border-left-color: var(--accent-orange); }
.info-panel--green { border-left-color: var(--accent-green); }

.cookie-table-wrap {
  overflow-x: auto;
  margin: 20px 0 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.cookie-table { margin: 0; }

.cookie-absent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 32px;
}

.cookie-absent-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--lighter-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
}

.cookie-absent-item h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.cookie-absent-item p { font-size: 0.88rem; margin-bottom: 0; color: var(--text-muted); }

.cookie-absent-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FDE8E8;
  color: #C0392B;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.glossary-list {
  margin: 16px 0 28px;
  padding: 0;
}

.glossary-list dt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary);
  margin-top: 16px;
  padding: 4px 0;
  border-bottom: 1px solid var(--border-color);
}

.glossary-list dd {
  font-size: 0.94rem;
  color: var(--text-body);
  margin: 6px 0 0 0;
  padding-left: 16px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .cookie-absent-grid { grid-template-columns: 1fr; }
  .disclaimer-alert { padding: 20px; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .glossary-layout { grid-template-columns: 1fr; }
  .glossary-rail { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .two-col-layout,
  .alternating-section .alt-row,
  .alternating-section .alt-row.reversed,
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .two-col-layout.reverse { direction: ltr; }
  .three-col-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip .stat-item { border-right: none; border-bottom: 1px solid var(--border-color); }
  .stat-strip .stat-item:last-child { border-bottom: none; }
  .image-gallery-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .cta-block { padding: 40px 24px; }
  .thank-you-box { padding: 36px 24px; }
  .article-hero img { height: 240px; }
  .hero-block { min-height: 400px; }
  .info-context-block ul { grid-template-columns: 1fr; }
  .ingredient-card ul { columns: 1; }
}

@media (max-width: 480px) {
  .container-wide { padding: 0 16px; }
  .cookie-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .cta-links { flex-direction: column; align-items: center; }
}
