/* =========================================
   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,
b, 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, 
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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FB;
  color: #23293B;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main {
  display: block;
}
ul,ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-style: none;
}
a {
  color: #16896C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #25B38E;
  outline: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
input, textarea {
  font-family: inherit;
  outline: none;
}

/* =========================================
   VARIABLES (with fallbacks)
========================================= */
:root {
  --color-primary: #274A78;
  --color-secondary: #F6F8FB;
  --color-accent: #16896C;
  --color-accent-bright: #25B38E;
  --color-bg-dark: #23293B;
  --color-bg-light: #ffffff;
  --color-hero-gradient: linear-gradient(135deg, #274A78 60%, #16896C);
  --radius: 16px;
  --shadow: 0 8px 24px rgba(39,74,120,0.12);
  --shadow-hover: 0 4px 24px 0 rgba(22,137,108,0.14);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.008em;
  margin-bottom: 18px;
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 2rem; }
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: #23293B;
}
blockquote {
  border-left: 3px solid var(--color-accent-bright);
  margin: 0 0 8px 0;
  padding: 0 0 0 16px;
  font-style: italic;
  color: var(--color-primary);
}
strong {
  font-weight: 700;
}

/* =========================================
   LAYOUT & CONTAINER
========================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  z-index: 1;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper { gap: 18px; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
  background: var(--color-bg-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(39,74,120,0.10);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  height: 40px;
}
nav.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #F6F8FB;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent-bright);
  color: #23293B;
}
.cta-btn {
  font-family: var(--font-display);
  background: var(--color-accent);
  color: #fff;
  padding: 11px 26px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 18px;
  border: none;
  box-shadow: 0 4px 20px 0 rgba(22,137,108,0.10);
  position: relative;
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent-bright);
  box-shadow: 0 8px 26px 0 rgba(22,137,108,0.19);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: #fff;
  margin-left: 12px;
  border: none;
  z-index: 200;
  line-height: 1;
  padding: 7px 14px 7px 8px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(39,74,120,0.22);
}
@media (max-width: 990px) {
  nav.main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ===================
   MOBILE MENU
=================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23293B;
  box-shadow: 0 8px 32px 0 rgba(39,74,120,0.20);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.29,1.15,.43,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
  margin: 14px 22px 0 0;
  background: rgba(39,74,120,0.18);
  border-radius: 50%;
  padding: 8px 14px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(39,74,120,0.38);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 54px 0 0 0;
  align-items: flex-start;
  padding: 0 38px;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent-bright);
  background: none;
  border-radius: 8px;
  padding: 9px 18px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent-bright);
  color: #23293B;
}
/* =========================================
   HERO SECTIONS
========================================= */
.hero {
  background: var(--color-hero-gradient);
  color: #fff;
  padding: 60px 0 56px 0;
  position: relative;
  box-shadow: 0 4px 32px 0 rgba(39,74,120,0.12);
  min-height: 330px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 650px;
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}
.hero .cta-btn {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 3px 10px 0 rgba(22,137,108,0.13);
  margin-left: 0;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--color-accent-bright);
  color: #fff;
}
@media (max-width: 768px) {
  .hero { padding: 38px 0 34px 0; min-height: 220px; }
  .hero .content-wrapper { max-width: 98vw; }
}
/* =========================================
   CTA SECTION
========================================= */
.cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 70px 0 0 0;
  padding: 54px 0 48px 0;
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
}
.cta h2 { color: #fff; }
.cta .cta-btn {
  background: #fff;
  color: var(--color-accent);
  margin-left: 0;
  border: none;
  font-weight: 600;
}
.cta .cta-btn:hover {
  background: #23293B;
  color: #fff;
}
@media (max-width: 768px) {
  .cta { margin: 38px 0 0 0; padding: 28px 0 24px 0; }
}
/* =========================================
   FEATURE GRIDS ETC.
========================================= */

.feature-grid, .event-grid, .blog-post-list, .course-list, .resource-list, .team-list, .key-statistics, .value-list, .course-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px 0;
  justify-content: flex-start;
  align-items: flex-start;
}
.feature-grid li, .event-grid li, .blog-post-list li, .course-list li, .resource-list li, .team-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 26px 26px 26px;
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
  gap: 12px;
  border: 1.5px solid #E5E9F0;
}
.feature-grid li:hover, .event-grid li:hover, .blog-post-list li:hover, .course-list li:hover, .resource-list li:hover, .team-list li:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
  border-color: var(--color-accent-bright);
}
.feature-grid img, .event-grid img, .course-list img {
  width: 45px;
  margin-bottom: 6px;
}
.key-statistics, .value-list, .course-features {
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}
.key-statistics li, .value-list li, .course-features li {
  background: var(--color-secondary);
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 500;
  color: var(--color-accent);
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(39,74,120,0.08);
}
@media (max-width: 768px) {
  .feature-grid, .event-grid, .blog-post-list, .course-list, .resource-list, .team-list {
    gap: 18px; flex-direction: column;
  }
  .feature-grid li, .event-grid li, .blog-post-list li, .course-list li, .resource-list li, .team-list li {
    min-width: 0; width: 100%;
  }
}

/* =========================================
   CARDS & CARD CONTAINER
========================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.19s;
  border: 1.5px solid #E5E9F0;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.025);
  border-color: var(--color-accent-bright);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* =========================================
   TEXT IMAGE SECTIONS/CONTENT GRIDS
========================================= */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px 0 rgba(39,74,120,0.10);
  padding: 20px 32px 20px 26px;
  margin-bottom: 20px;
  border: 1.5px solid #E5E9F0;
  max-width: 650px;
}
.testimonial-card blockquote {
  color: #23293B;
  font-size: 1.1rem;
  border-left: 3px solid var(--color-accent-bright);
  margin: 0 0 8px 0;
  padding: 0 0 0 16px;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px 13px;
  }
}

/* =========================================
   BLOG CATEGORIES/FEATURED POSTS
========================================= */
.blog-categories, .course-categories, .featured-posts {
  border-radius: 10px;
  background: #FDFEFF;
  padding: 14px 26px;
  margin-top: 20px;
  box-shadow: 0 2px 10px 0 rgba(22,137,108,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-categories ul, .course-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-categories li, .course-categories li {
  background: var(--color-accent-bright);
  color: #fff;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 18px;
  font-size: 0.99em;
}
.featured-posts p {
  color: var(--color-accent);
  margin: 0;
  font-size: 1.05em;
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--color-bg-dark);
  color: #FAFCFF;
  padding: 48px 0 28px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-brand, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  width: 42px;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #F6F8FB;
  font-size: 0.98rem;
  padding: 4px 0;
  transition: color 0.16s;
}
.footer-nav a:hover { color: var(--color-accent-bright); }
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #DBE7F4;
  font-size: 0.98rem;
}
.footer-contact img { width: 18px; height: 18px; display: inline-block; }
@media (max-width: 950px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* =========================================
   DOWNLOAD/EXTERNAL LINKS
========================================= */
.download-link, .external-link {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 30px;
  padding: 7px 18px;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 4px 14px 0 rgba(22,137,108,0.12);
  gap: 8px;
}
.download-link:hover, .external-link:hover {
  background: var(--color-accent-bright);
  color: #fff;
  text-decoration: none;
}
.download-link img, .external-link img {
  height: 22px;
  width: 22px;
  margin-right: 7px;
  filter: brightness(96%) drop-shadow(0 1px 0 #fff2);
}

/* =========================================
   POLICY & INFO BOXES
========================================= */
.policy-update {
  color: #7DCFD1;
  background: #F6F8FB;
  border-radius: 9px;
  padding: 6px 18px;
  font-size: 0.96em;
  margin-top: 15px;
  font-style: italic;
  display: inline-block;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-primary);
  font-size: 1rem;
}
.contact-details img { width: 20px; height: 20px; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .container { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 670px) {
  .hero {
    min-height: 180px; padding: 28px 0;
  }
  .section, .contact-section {
    padding: 24px 8px; margin-bottom: 32px;
  }
  .card, .testimonial-card {
    padding: 13px 7px;
  }
}
@media (max-width: 500px) {
  .footer-brand img { width: 28px; }
  .content-wrapper { gap: 13px; }
}

/* =========================================
   MICRO-INTERACTIONS & ANIMATIONS
========================================= */
.card, .testimonial-card, .feature-grid li, .event-grid li, .blog-post-list li, .download-link, .external-link, .cta-btn, .section, .team-list li {
  transition: box-shadow 0.19s, transform 0.16s, border 0.15s, background 0.17s, color 0.17s;
}
.cta-btn:active { transform: scale(0.97); }

/* ========== FOCUS RINGS (A11Y) ========= */
a:focus, button:focus, .cta-btn:focus, .download-link:focus, .external-link:focus {
  outline: 2px solid var(--color-accent-bright);
  outline-offset: 2px;
}

/* =========================================
   COOKIE CONSENT BANNER
========================================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100%;
  background: #23293B;
  color: #fff;
  box-shadow: 0 -3px 18px rgba(39,74,120,0.18);
  z-index: 2200;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 18px;
  gap: 28px;
  font-size: 1rem;
  justify-content: space-between;
  animation: cookie-banner-in 0.45s cubic-bezier(.19,1.11,.22,1) both;
}
.cookie-banner.close {
  display: none;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-msg {
  max-width: 550px;
  font-size: 1em;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.98em;
  border: none;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 600;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 4px 14px 0 rgba(22,137,108,0.08);
}
.cookie-btn.reject {
  background: #42567B;
  color: #fff;
}
.cookie-btn.settings {
  background: #F6F8FB;
  color: var(--color-primary);
  border: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent-bright);
  color: #fff;
}
@media (max-width: 850px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 9px 16px 9px;
  }
}

/* ===================
   COOKIE MODAL
=================== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,74,120,0.28);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.32s cubic-bezier(.19,1.13,.19,1) both;
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #23293B;
  border-radius: 18px;
  box-shadow: 0 14px 40px 0 rgba(39,74,120,0.24);
  min-width: 340px;
  max-width: 98vw;
  padding: 35px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 10000;
  animation: cookie-modal-box-in 0.55s cubic-bezier(.08,1.22,.19,1) both;
}
@keyframes cookie-modal-box-in {
  from { transform: translateY(60px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5em;
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.02em;
}
.cookie-category label {
  font-weight: 500;
  color: var(--color-primary);
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--color-accent);
}
.cookie-category .always-on {
  font-size: 0.97em;
  color: var(--color-accent-bright);
  padding-left: 5px;
}
.cookie-modal .cookie-btn {
  align-self: flex-end;
  margin-left: 7px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.45rem;
  background: none;
  color: #23293B;
  border: none;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background 0.16s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: #F6F8FB;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 17px 4vw 11px 3vw; min-width: 0; }
}

/* =========================================
   SCROLLBARS (Futuristic Thin)
========================================= */
::-webkit-scrollbar {
  width: 10px;
  background: #F6F8FB;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--color-primary) 70%, var(--color-accent-bright));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--color-accent) 30%, var(--color-primary));
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-bright) #F6F8FB;
}

/* =========================================
   NEON/TECH FUTURISTIC ACCENTS
========================================= */
.card, .feature-grid li, .event-grid li, .blog-post-list li, .resource-list li, .team-list li, .testimonial-card {
  box-shadow: 0 1.5px 9px 0 rgba(39,74,120,0.07), 0 1px 19px 0 rgba(37,179,142,0.09);
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 2px 24px 0 rgba(22,137,108,0.14), 0 0 4px 1px #7CFFE2;
  border-color: #24CFB6;
}
.feature-grid li:before, .event-grid li:before, .team-list li:before {
  content: '';
  position: absolute;
  left: 14px; top: 14px;
  width: 5px; height: 30px;
  background: linear-gradient(180deg, #24CFB6 0%, #16896C 100%);
  border-radius: 3px;
  opacity: 0.68;
  z-index: 0;
  box-shadow: 0 0 14px 2px #7CFFE2CC;
  display: block;
}
.feature-grid li, .event-grid li, .team-list li {
  padding-left: 38px;
}
@media (max-width: 768px) {
  .feature-grid li:before, .team-list li:before, .event-grid li:before { display:none; }
  .feature-grid li, .team-list li, .event-grid li { padding-left: 20px; }
}

/* =========================================
   MISC: UTILITIES
========================================= */
.text-section {
  max-width: 730px;
  margin: 0 auto;
}
.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

/* =========================================
   PRINT (BASIC)
========================================= */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main, .container, .content-wrapper { background: #fff !important; color: #23293B !important; box-shadow: none !important; }
}
