/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F9FBF7;
  color: #222222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Moderate letter spacing for vibrance */
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #176E61;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.6,.19,.56,.95);
}
a:hover, a:focus {
  color: #00B9A3;
  outline: none;
}
strong, b {
  font-weight: bold;
}
ul, ol {
  margin-left: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #176E61;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
p, li, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* === BRAND COLORS === */
:root {
  --primary: #176E61;
  --primary-dark: #104D41;
  --secondary: #F9FBF7;
  --header-bg: #fff;
  --footer-bg: #222222;
  --accent: #F2D980;
  --accent-strong: #FFB800;
  --electric-green: #00B9A3;
  --electric-pink: #FF4791;
  --violet: #672FF6;
  --shadow: 0 6px 23px rgba(23,110,97,0.13), 0 2px 8px rgba(23,110,97,0.07);
  --radius: 18px;
  --gap: 24px;
  --gap-small: 20px;
}

/* === CONTAINER & MAIN LAYOUT === */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* === HEADER === */
header {
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 185, 163, 0.04);
  width: 100%;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
  height: 72px;
  gap: 16px;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
}
.main-nav a {
  color: #176E61;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: #222;
}
.main-nav .cta-primary {
  background: var(--electric-green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 3px 20px rgba(0,185,163,0.13);
  border: none;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.04em;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 5px 16px rgba(103,47,246,0.16);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  transition: color .2s;
  z-index: 301;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--electric-pink);
}

/* === MOBILE MENU === */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.66,0,0.34,1), opacity 0.3s;
}
.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--primary);
  align-self: flex-end;
  margin: 23px 23px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  padding: 12px 0;
  border-bottom: 2px solid var(--accent);
  transition: color .2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--electric-green);
}

/* === HERO SECTION === */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(96deg, #F2D980 0%, #00B9A3 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 330px;
  margin-bottom: 60px;
  padding: 50px 0;
  overflow: visible;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: #222;
  font-size: 2.3rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--electric-green), var(--electric-pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.01em;
}
.hero p {
  color: #222;
  font-size: 1.12rem;
  max-width: 620px;
}

/* === FEATURE / SERVICE / CARD SECTIONS === */
.features, .services, .articles-preview, .articles-list, .article-categories, .team, .brand-identity, .seminar-info, .address, .legal {
  padding: 40px 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.features ul, .services ul, .article-cards, .article-teasers {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.articles-preview ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.article-teasers li, .article-cards li {
  flex: 1 1 270px;
  background: var(--secondary);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 18px 12px 20px;
  margin-bottom: 0;
  margin-right: 0;
  transition: box-shadow 0.21s, transform 0.21s;
}
.article-teasers li:hover,
.article-cards li:hover,
.article-teasers li:focus-within,
.article-cards li:focus-within {
  box-shadow: 0 8px 34px rgba(0, 185, 163, 0.13), 0 3px 15px rgba(103,47,246,0.08);
  transform: translateY(-2px) scale(1.03);
}
.article-teasers li a, .article-cards li article a {
  font-weight: 800;
  color: var(--electric-pink);
  display: block;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.18s;
}
.article-teasers li a:hover, .article-cards li article a:hover {
  color: var(--primary);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 16px;
}
.service-list li {
  flex: 1 1 270px;
  min-width: 240px;
  background: var(--electric-green);
  color: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 22px;
  margin-bottom: 0;
  margin-right: 0;
  transition: box-shadow 0.21s, transform 0.21s, background 0.21s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li strong {
  color: var(--accent-strong);
  background: none;
}
.service-list li h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.service-list li:hover,
.service-list li:focus-within {
  background: var(--violet);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 10px 40px rgba(103,47,246,0.17), 0 3px 20px rgba(0,185,163,0.09);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--accent);
  padding: 52px 0 39px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonials h2 {
  color: var(--primary-dark);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 18px 22px;
  background: #fff;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 5px 25px rgba(23,110,97,0.10);
  max-width: 370px;
  min-width: 230px;
  flex: 1 1 240px;
  margin-bottom: 0;
  transition: box-shadow 0.21s, transform 0.18s;
}
.testimonial-card span {
  color: var(--electric-green);
  font-size: .99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 38px rgba(23,110,97,0.13), 0 3px 25px rgba(103,47,246,0.12);
  transform: scale(1.035);
}

/* === CTA BUTTONS === */
.cta-primary, .cta-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 3px 16px rgba(242,217,128,0.08);
  transition: background 0.20s cubic-bezier(0.6,0,.6,1), color 0.20s, box-shadow 0.11s;
  border: none;
  cursor: pointer;
  position: relative;
}
.cta-primary {
  background: var(--electric-green);
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 7px 20px rgba(103,47,246,0.14), 0 2px 8px rgba(0,185,163,0.07);
}
.cta-secondary {
  background: var(--accent);
  color: #222;
  border: 2px solid var(--electric-green);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--electric-pink);
  color: #fff;
  box-shadow: 0 8px 17px rgba(255,71,145,0.14);
}

/* === FORMS & INPUTS (for contact etc.) === */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid var(--primary);
  background: #fff;
  margin-bottom: 18px;
  color: #222;
  box-shadow: none;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--electric-green);
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}
button {
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

/* === PAGINATION === */
.pagination {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}
.pagination a, .pagination span {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover, .pagination a:focus {
  background: var(--electric-pink);
  color: #fff;
}
.pagination .current {
  color: #fff;
  background: var(--electric-green);
  pointer-events: none;
}

/* === FOOTER === */
footer {
  background: var(--footer-bg);
  color: #fff;
  margin-top: 60px;
  padding: 0 0 0 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -6px 32px rgba(23,110,97,0.13);
}
footer .container {
  padding: 26px 20px;
  gap: 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-logo {
  flex: 1 1 90px;
  max-width: 120px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 120px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--electric-green);
}
.footer-contact {
  flex: 2 1 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.4;
}
.footer-copy {
  text-align: center;
  color: var(--accent);
  font-size: .97rem;
  padding-bottom: 9px;
  letter-spacing: 0.02em;
}

/* === SPECIAL LAYOUTS & FLEXBOX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 410px;
  transition: box-shadow 0.19s, transform 0.16s;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 37px rgba(0,185,163,0.13), 0 2px 9px rgba(103,47,246,0.11);
  transform: scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 700;
  background: linear-gradient(96deg, var(--accent), #fff 55%);
  color: #222;
  box-shadow: 0 -1px 25px rgba(23,110,97,0.11);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 16px 23px 16px;
  font-size: 1.09rem;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  animation: banner-slide-in 0.55s cubic-bezier(.8,0,.18,1.04);
}
@keyframes banner-slide-in {
  0% {
    transform: translateY(120%);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner p {
  margin: 0 0 0 0;
  max-width: 560px;
}
.cookie-buttons {
  display: flex;
  gap: 22px;
}
.cookie-buttons button {
  border-radius: 10px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 11px 22px;
  font-size: 1.03rem;
  box-shadow: 0 3px 12px rgba(242,217,128,0.12);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .14s;
}
.cookie-buttons .accept {
  background: var(--electric-green);
  color: #fff;
}
.cookie-buttons .accept:hover,
.cookie-buttons .accept:focus {
  background: var(--violet);
}
.cookie-buttons .reject {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-buttons .reject:hover,
.cookie-buttons .reject:focus {
  background: var(--primary);
}
.cookie-buttons .settings {
  background: var(--accent);
  color: #222;
  border: 2px solid var(--primary);
}
.cookie-buttons .settings:hover,
.cookie-buttons .settings:focus {
  background: var(--primary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 980;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 34, 34, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.31s cubic-bezier(.6,0,.42,1.37);
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 19px;
  box-shadow: 0 8px 54px rgba(23,110,97,0.16);
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 26px 28px 26px;
  animation: modal-slide-up 0.41s cubic-bezier(.6,.23,.41,1.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modal-slide-up {
  0% { transform: translateY(90px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: var(--primary);
  margin-bottom: 13px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category .toggle {
  margin-left: auto;
  outline: none;
  width: 40px;
  height: 24px;
  background: var(--accent);
  border-radius: 24px;
  border: 2px solid var(--primary);
  position: relative;
  cursor: pointer;
  appearance: none;
  transition: background 0.17s, border 0.17s;
}
.cookie-category .toggle:checked {
  background: var(--electric-green);
  border: 2px solid var(--electric-green);
}
.cookie-category .toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-category .toggle:checked:before {
  left: 20px;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .modal-buttons button {
  flex: 1 1 0;
}
.cookie-modal .close-modal-btn {
  align-self: flex-end;
  color: var(--electric-pink);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: -15px;
  margin-top: -25px;
  margin-right: -10px;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  color: var(--primary);
  background: none;
}

/* === MISC === */
.section:last-child, main > section:last-child {
  margin-bottom: 0;
}

hr {
  border: none;
  border-top: 2px solid var(--primary);
  margin: 40px 0;
}

/* === RESPONSIVE DESIGN (MOBILE-FIRST) === */
@media (max-width: 1150px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  footer .container, .footer-row { flex-direction: column; gap: 30px; align-items: flex-start; }
  .footer-contact { max-width: 100%; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 820px) {
  .main-nav { gap: 8px; font-size: 1.06rem; }
  header .container { gap: 6px; }

  .hero h1 { font-size: 1.8rem; }
}
@media (max-width: 768px) {
  header .container { height: 56px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .features, .services, .articles-preview, .testimonials, .address, .seminar-info, .articles-list, .team, .brand-identity, .legal {
    padding: 32px 0;
    margin-bottom: 40px;
  }
  .hero .container, .hero .content-wrapper {
    align-items: flex-start;
    gap: 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .service-list, .testimonial-slider, .article-teasers, .article-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .article-teasers li, .service-list li, .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  header .container {
    padding: 0 8px;
    height: 48px;
  }
  .logo img, .footer-logo img {
    max-height: 43px;
    width: auto;
  }
  .footer-row { gap: 16px; }
  .footer-nav { gap: 6px; }
  .contact-methods, .address-map {
    flex-direction: column;
    gap: 12px;
  }
  .hero {
    min-height: 180px;
    padding: 38px 0 38px 0;
  }
  .hero h1 {
    font-size: 1.25rem;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--primary);
  }
  .section {
    padding: 23px 7px;
    margin-bottom: 32px;
  }
}
@media (max-width: 430px) {
  .container { padding: 0 4px; }
  .footer-logo img { max-width: 49px; height: auto; }
  .footer-contact p { font-size: 0.92rem; }
  .footer-copy { font-size: 0.93rem; }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 15px 6px 12px 6px; font-size: .99rem; }
}

/* === ANIMATIONS / TRANSITIONS === */
.cta-primary, .cta-secondary, .main-nav a, .footer-nav a, .cookie-buttons button, .service-list li, .card, .testimonial-card, .article-teasers li, .article-cards li {
  transition: background 0.20s, box-shadow 0.20s, color 0.20s, transform 0.17s;
}

/* === UTILITIES === */
.hide { display: none !important; }
.text-center { text-align: center !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2em !important; }
.mb-0 { margin-bottom: 0 !important; }

/* Focus accessibility */
:focus-visible {
  outline: 2px solid var(--electric-green);
  outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { color: #111 !important; background: #fff !important; }
}

/* === END === */
