@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #34495E;
  --accent-green: #28B463;
  --accent-orange: #F39C12;
  --secondary: #AAB7B8;
  --bg-light: #F8F9FA;
  --bg-white: #FFFFFF;
  --text-dark: #1C2B38;
  --text-muted: #6C7A7D;
  --border-color: #DDE3E5;
  --shadow-soft: 0 4px 24px rgba(52,73,94,0.08);
  --shadow-card: 0 2px 12px rgba(52,73,94,0.10);
  --shadow-hover: 0 8px 32px rgba(52,73,94,0.18);
  --radius: 6px;
  --section-gap: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-white);
}

h1, h2, h3 { font-family: 'Roboto Slab', serif; color: var(--primary); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; line-height: 1.4; }

p { font-family: 'Open Sans', sans-serif; font-size: 1rem; line-height: 1.75; color: var(--text-dark); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; line-height: 1.7; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

section { padding: var(--section-gap) 0; }

.section-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(40,180,99,0.09);
  border-left: 3px solid var(--accent-green);
  padding: 4px 12px;
  margin-bottom: 18px;
}

.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-orange) 100%);
  margin: 18px 0 28px;
  border-radius: 2px;
}

.section-divider-center { margin-left: auto; margin-right: auto; }

.bg-primary-dark { background: var(--primary); }
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--bg-white); }

.text-white { color: #fff !important; }
.text-white h1, .text-white h2, .text-white h3, .text-white p { color: #fff !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 16px rgba(52,73,94,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: 'Roboto Slab', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo span.logo-accent { color: var(--accent-green); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active { background: rgba(40,180,99,0.18); color: var(--accent-green); }

.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: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  background: var(--primary);
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 10px 24px;
  border-left: 3px solid transparent;
  transition: all 0.18s;
}

.mobile-menu a:hover,
.mobile-menu a.active { border-left-color: var(--accent-green); color: var(--accent-green); background: rgba(40,180,99,0.08); }

.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-top: 12px; line-height: 1.65; }

.footer-col h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: rgba(255,255,255,0.72); font-size: 0.88rem; transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--accent-green); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }

.footer-edu-note {
  background: rgba(40,180,99,0.12);
  border-left: 3px solid var(--accent-green);
  padding: 12px 20px;
  margin: 24px 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  font-style: italic;
}

.btn {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(40,180,99,0.18);
}

.btn-primary:hover {
  background: #219a52;
  color: #fff;
  box-shadow: 0 6px 20px rgba(40,180,99,0.28);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.btn-outline:hover {
  background: var(--accent-green);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-card);
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s, transform 0.22s;
  overflow: hidden;
}

.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.card-body { padding: 28px; }

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(40,180,99,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg { color: var(--accent-green); }

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(52,73,94,0.92) 0%, rgba(52,73,94,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-content h1 { color: #fff; margin-bottom: 24px; }

.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.12rem; margin-bottom: 32px; max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.hero-badge .dot { width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; display: inline-block; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.two-col-img img { width: 100%; height: 420px; object-fit: cover; display: block; }

.two-col-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(52,73,94,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.img-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-green);
  z-index: 2;
}

.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.two-col-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.glossary-rail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.glossary-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent-green);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.glossary-item:hover { box-shadow: var(--shadow-card); border-left-color: var(--accent-orange); }

.glossary-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(40,180,99,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glossary-item-text h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.glossary-item-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

.progress-block { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }

.progress-item {}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.progress-bar-track {
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-orange) 100%);
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border-color);
}

.timeline-item { position: relative; margin-bottom: 28px; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent-green);
}

.timeline-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.quote-block {
  position: relative;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 48px 56px;
  overflow: hidden;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 32px;
  font-size: 9rem;
  color: rgba(255,255,255,0.06);
  font-family: 'Roboto Slab', serif;
  line-height: 1;
}

.quote-block blockquote {
  font-family: 'Roboto Slab', serif;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-block .quote-attr { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-style: normal; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-item .stat-number {
  font-family: 'Roboto Slab', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.info-table th {
  background: var(--primary);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 14px 20px;
  text-align: left;
  letter-spacing: 0.05em;
}

.info-table td {
  padding: 13px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.info-table tr:nth-child(even) td { background: var(--bg-light); }
.info-table tr:hover td { background: rgba(40,180,99,0.05); }

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  background: var(--bg-white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.18s;
}

.accordion-btn:hover { background: var(--bg-light); }
.accordion-btn.open { background: var(--primary); color: #fff; }

.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s;
}

.accordion-btn.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 20px 24px;
  background: var(--bg-light);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.accordion-body.open { display: block; }

.disclaimer-box {
  background: rgba(243,156,18,0.08);
  border: 1px solid rgba(243,156,18,0.3);
  border-left: 4px solid var(--accent-orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}

.disclaimer-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.disclaimer-box strong { color: var(--primary); }

.info-disclaimer {
  background: var(--bg-light);
  border-top: 3px solid var(--secondary);
  padding: 28px 32px;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 32px;
}

.info-disclaimer h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.info-disclaimer p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

.fullwidth-cta {
  background: var(--primary);
  padding: 64px 0;
  text-align: center;
}

.fullwidth-cta h2 { color: #fff; margin-bottom: 16px; }
.fullwidth-cta p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; }

.page-hero {
  background: var(--primary);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 640px; margin-top: 14px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--accent-green); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: rgba(255,255,255,0.78); }

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-section { margin-bottom: 36px; }
.policy-section h2 { margin-bottom: 14px; }
.policy-section h3 { margin-bottom: 10px; color: var(--text-dark); }

.key-principles {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 32px 0;
}

.key-principles h3 { color: var(--accent-green); margin-bottom: 18px; }
.key-principles ul { padding-left: 0; list-style: none; margin: 0; }
.key-principles ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.key-principles ul li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green); flex-shrink: 0; margin-top: 7px; }
.key-principles ul li:last-child { border-bottom: none; }

.toc-rail {
  position: sticky;
  top: 90px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.toc-rail h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.toc-rail a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: all 0.18s;
}

.toc-rail a:hover { color: var(--accent-green); border-left-color: var(--accent-green); }

.with-sidebar { display: grid; grid-template-columns: 1fr 260px; gap: 56px; align-items: start; }

.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }

.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
}

.contact-form-wrap h2 { margin-bottom: 8px; }

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}

.form-control:focus { border-color: var(--accent-green); box-shadow: 0 0 0 3px rgba(40,180,99,0.12); }

textarea.form-control { resize: vertical; min-height: 140px; }

.contact-aside {}

.contact-info-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.contact-info-box h4 { color: var(--accent-green); font-family: 'Open Sans', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }

.contact-line { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.contact-line svg { flex-shrink: 0; color: var(--accent-green); margin-top: 2px; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 6px 0; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.hours-table td:last-child { text-align: right; color: rgba(255,255,255,0.5); }

.thank-you-section {
  min-height: calc(100vh - 72px - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.thank-you-box {
  max-width: 580px;
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 56px 48px;
  border-top: 4px solid var(--accent-green);
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(40,180,99,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.about-mission-box {
  background: var(--accent-green);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-top: 32px;
}

.about-mission-box h3 { color: #fff; margin-bottom: 12px; }
.about-mission-box p { color: rgba(255,255,255,0.88); font-size: 0.95rem; margin: 0; }

.catalog-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.catalog-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}

.catalog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.catalog-card-img { height: 220px; overflow: hidden; }
.catalog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.catalog-card:hover .catalog-card-img img { transform: scale(1.04); }

.catalog-card-body { padding: 28px; }
.catalog-card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.catalog-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }

.catalog-benefits { list-style: none; padding: 0; margin: 0 0 20px; }
.catalog-benefits li { font-size: 0.85rem; color: var(--text-dark); padding: 5px 0; padding-left: 18px; position: relative; }
.catalog-benefits li::before { content: ''; position: absolute; left: 0; top: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-green); }

.warning-section {
  background: rgba(243,156,18,0.07);
  border: 1px solid rgba(243,156,18,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.warning-section h4 { color: var(--accent-orange); font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }

.cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.cookie-table th { background: var(--primary); color: #fff; padding: 12px 16px; text-align: left; font-size: 0.85rem; font-family: 'Open Sans', sans-serif; }
.cookie-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-color); font-size: 0.88rem; }
.cookie-table tr:nth-child(even) td { background: var(--bg-light); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  border-top: 3px solid var(--accent-green);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(52,73,94,0.22);
  display: none;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p { color: rgba(255,255,255,0.82); font-size: 0.88rem; margin: 0; flex: 1; min-width: 260px; }

.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-btn {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.18s;
}

.cookie-btn-accept { background: var(--accent-green); color: #fff; }
.cookie-btn-accept:hover { background: #219a52; }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.25); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.07); color: #fff; }
.cookie-btn-more { background: transparent; color: var(--accent-orange); border: 1px solid rgba(243,156,18,0.35); }
.cookie-btn-more:hover { background: rgba(243,156,18,0.1); }

.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .with-sidebar { grid-template-columns: 1fr; }
  .toc-rail { position: static; }
}

@media (max-width: 768px) {
  :root { --section-gap: 48px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 32px 28px; }
  .catalog-intro { max-width: 100%; }
}

@media (max-width: 480px) {
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }
  .hero-section { min-height: 80vh; }
  .thank-you-box { padding: 36px 24px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
