/* ==========================================================
   RESET & BASELINE NORMALIZE (Mobile-first)
========================================================== */
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, 
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f8f9fb;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #f8f9fb;
  color: #0c1d2e;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
button, select, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/* ==========================================================
   VARIABLES & UTILITY CLASSES
========================================================== */
:root {
  --color-primary: #064273;
  --color-secondary: #29a6d2;
  --color-accent: #F8F9FB;
  --color-bg-darker: #0a2034;
  --color-bg-light: #f2faff;
  --color-neon: #18fcff;
  --color-btn-glow: #52e5ff;
  --color-bg-hero: #0d2d42;
  --color-success: #2cf6b3;
  --radius-card: 16px;
  --shadow-card: 0 4px 32px 0 rgba(8,39,82,.16);
  --gradient-hero: linear-gradient(135deg, #064273 0%, #29A6D2 90%);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --sp-xxs: 8px;
  --sp-xs: 12px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-xxl: 64px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 768px) {
  .container { max-width: 100%; }
}

/* =====================
   TYPOGRAPHY
====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: var(--sp-md);
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: var(--sp-md);
  letter-spacing: -1px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-xs);
}
.text-section h3 {
  color: var(--color-secondary);
  margin-bottom: var(--sp-xs);
}
p {
  margin-bottom: var(--sp-sm);
  color: #143457;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
.brand-tagline, .tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-secondary);
  letter-spacing: 0.4px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
}
.testimonial-rating {
  font-size: 1.2rem;
  color: var(--color-secondary);
}
.category-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 2px 12px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 12px;
  margin-left: 8px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

/* =====================
   LAYOUT: HEADER & NAV
====================== */
header {
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(6,66,115,.06);
  position: relative;
  z-index: 40;
  border-bottom: 3px solid var(--color-secondary);
}
.brand-header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand-header img {
  height: 48px;
  width: auto;
}
.brand-tagline {
  font-size: 1.08rem;
  letter-spacing: 1px;
  font-weight: 400;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 6px 2px;
  color: var(--color-primary);
  transition: color .2s;
  position: relative;
  margin-right: 0;
}
nav a:not(.cta-button):hover, nav a:focus {
  color: var(--color-secondary);
}
.cta-button {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 10px 30px;
  letter-spacing: 1px;
  margin-left: 18px;
  box-shadow: 0 3px 24px 0 rgba(41,166,210,.15);
  transition: background 0.25s, box-shadow 0.25s, color 0.2s;
  position: relative;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 5px 30px 0 var(--color-btn-glow);
}

@media (max-width: 1060px) {
  nav {
    gap: 16px;
  }
  .cta-button {
    padding: 10px 20px;
    margin-left: 6px;
  }
}

@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    align-items: stretch;
  }
  nav {
    margin-top: 8px;
  }
}

/* =====================
   MOBILE NAVIGATION
====================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-left: 12px;
  padding: 8px;
  border-radius: 8px;
  border: none;
  transition: background 0.12s, color 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(6, 66, 115, 0.97);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 20px 24px 0 0;
  cursor: pointer;
  transition: color .15s;
  z-index: 2010;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 12px 0 12px 8px;
  border-left: 3px solid transparent;
  border-radius: 0 16px 16px 0;
  transition: background .15s, border-color .22s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(41,166,210,.17);
  color: var(--color-neon);
  border-left: 3px solid var(--color-neon);
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
   HERO SECTION & CALLS TO ACTION
====================== */
.hero {
  background: var(--color-bg-darker);
  background: var(--gradient-hero);
  color: #fff;
  padding: 60px 0 42px 0;
  border-bottom-left-radius: var(--radius-card);
  border-bottom-right-radius: var(--radius-card);
  box-shadow: 0 8px 36px 0 rgba(6,66,115,.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-lg);
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}
.hero a.cta-button {
  margin-top: var(--sp-md);
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 3px 18px 0 var(--color-btn-glow);
  border: 2px solid var(--color-neon);
  text-shadow: 0 0 8px var(--color-neon);
  letter-spacing: 1.5px;
  transition: background 0.27s, color 0.18s, box-shadow 0.24s;
}
.hero a.cta-button:hover, .hero a.cta-button:focus {
  background: var(--color-neon);
  color: var(--color-bg-darker);
  box-shadow: 0 6px 32px 0 var(--color-neon);
}

@media (max-width: 768px) {
  .hero { padding: 40px 0 24px 0; }
  .hero .content-wrapper { gap: var(--sp-md); }
}

/* =====================
   SECTIONS, CARDS, CONTAINERS
====================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 24px 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--sp-md);
  position: relative;
  transition: transform 0.18s, box-shadow 0.22s;
  min-width: 270px;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 32px 0 var(--color-secondary);
  z-index: 2;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px 0 rgba(6,66,115,.09);
  margin-bottom: 20px;
  min-width: 280px;
  min-height: 110px;
  border: 2px solid var(--color-secondary);
  transition: box-shadow .17s, border-color .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--color-neon);
  box-shadow: 0 6px 32px 0 var(--color-neon);
  z-index: 2;
}
.testimonial-card .testimonial-rating {
  margin-left: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   FLEXIBLE FEATURE/GRID LISTS/LOGOS
====================== */
.feature-grid,
.features-about .content-wrapper ul,
.features-benefits .content-wrapper ul,
.features-tips .content-wrapper ul,
.features-projects .content-wrapper ul,
.features-contact .content-wrapper ul,
.features-blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  flex-direction: row;
}
.feature-grid li,
.features-about .content-wrapper ul li,
.features-benefits .content-wrapper ul li,
.features-tips .content-wrapper ul li,
.features-projects .content-wrapper ul li,
.features-contact .content-wrapper ul li,
.features-blog .blog-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(41,166,210,.08);
  padding: 20px 18px;
  min-width: 200px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid #e6edf8;
  transition: box-shadow .2s, border-color .2s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 32px 0 rgba(41,166,210,.18);
}
.feature-grid li img {
  height: 44px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .feature-grid,
  .features-about .content-wrapper ul,
  .features-benefits .content-wrapper ul,
  .features-tips .content-wrapper ul,
  .features-projects .content-wrapper ul,
  .features-contact .content-wrapper ul,
  .features-blog .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .features-blog .blog-list li {
    min-width: 0;
    width: 100%;
    padding: 16px 10px;
  }
}

/* =====================
   BLOG ARTICLES LIST
====================== */
.blog-list li article {
  display: flex;
  flex-direction: column;
}
.blog-list header h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 5px;
  font-size: 1.08rem;
}
.blog-list p {
  color: #175187;
  font-size: 0.98rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* =====================
   FOOTER
====================== */
footer {
  background: var(--color-bg-darker);
  color: #fff;
  padding: 32px 0 12px 0;
  border-top: 3px solid var(--color-secondary);
  margin-top: var(--sp-xl);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 40px;
  filter: drop-shadow(0 0 6px #52e5ff);
}
.footer-nav, .footer-contact ul, .legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .legal-links a {
  color: #d2f2fc;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: color .14s;
}
.footer-nav a:hover, .legal-links a:hover, .footer-nav a:focus, .legal-links a:focus {
  color: var(--color-neon);
}
.footer-contact ul li {
  color: #b2e8ff;
  font-size: 0.95rem;
}
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-links img {
  height: 28px;
  width: 28px;
  filter: drop-shadow(0 0 8px #18fcff);
  transition: filter .13s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: drop-shadow(0 0 10px #fff);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .footer-brand { margin-bottom: 18px; }
}

/* =====================
   LEGAL (COOKIES/RODO/POLICIES)
====================== */
.legal {
  background: #fff;
  padding: 40px 24px;
  border-radius: var(--radius-card);
  margin-bottom: 60px;
  box-shadow: var(--shadow-card);
}
.legal h1 {
  color: var(--color-primary);
}
.legal .text-section ul {
  list-style: inside disc;
}

/* =====================
   SUCCESS / THANK YOU
====================== */
.success {
  margin: 60px auto;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px 20px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.success .thank-you-message {
  font-size: 1.18rem;
  margin: 32px 0;
  color: var(--color-success);
  font-family: var(--font-display);
}

/* =====================
   COOKIES CONSENT BANNER & MODAL
====================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192f45;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -4px 24px 0 rgba(6,66,115,.21);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 14px 16px;
  gap: 28px;
  font-size: 1rem;
  transition: transform .23s cubic-bezier(.8,0,.21,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 2 1 240px;
  margin-bottom: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 8px 20px;
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: background .19s, color .15s, box-shadow .13s;
  border: none;
  outline: none;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 2px 12px 0 #29a6d255;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-neon);
  color: var(--color-bg-darker);
  box-shadow: 0 3px 18px 0 var(--color-neon);
}
.cookie-settings-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
    padding: 16px 5px 11px 8px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(6, 66, 115, 0.7);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity .19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 8px 42px 0 var(--color-secondary);
  max-width: 440px;
  width: 98vw;
  padding: 32px 28px 24px 28px;
  z-index: 11100;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn .28s cubic-bezier(.83,0,.21,1);
}
@keyframes cookieModalIn {
  0% { transform: translateY(80px) scale(.93); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-secondary);
  margin-bottom: 4px;
  font-size: 1.2rem;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 18px 0;
}
.cookie-modal .cookie-toggle-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #e0f7ff;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  height: 20px;
  width: 20px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left .16s, background .13s;
}
.cookie-toggle input:checked + span {
  left: 22px;
  background: var(--color-neon);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn, .cookie-modal .cookie-settings-btn {
  padding: 7px 18px;
  font-size: 1rem;
}

/* ==========================
   CTA & SPECIAL SECTIONS
========================== */
.cta-contact, .cta-service, .cta-poradnik, .cta-blog {
  background: var(--color-secondary);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 36px 0 #29a6d277;
  color: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-contact h2, .cta-service h2, .cta-poradnik h2, .cta-blog h2,
.cta-contact p, .cta-service p, .cta-poradnik p, .cta-blog p {
  color: #fff;
}
.cta-contact .cta-button, .cta-service .cta-button, .cta-poradnik .cta-button, .cta-blog .cta-button {
  background: var(--color-bg-darker);
  color: var(--color-neon);
  border: 2px solid var(--color-neon);
  margin: 24px 0 0 0;
  text-shadow: 0 0 8px #fff;
  box-shadow: 0 1px 18px 0 var(--color-neon);
}
.cta-contact .cta-button:hover, .cta-service .cta-button:hover, .cta-poradnik .cta-button:hover, .cta-blog .cta-button:hover, 
.cta-contact .cta-button:focus, .cta-service .cta-button:focus, .cta-poradnik .cta-button:focus, .cta-blog .cta-button:focus {
  background: var(--color-neon);
  color: var(--color-bg-darker);
}
@media (max-width: 740px) {
  .cta-contact, .cta-service, .cta-poradnik, .cta-blog {
    padding: 23px 9px;
    margin-bottom: 38px;
  }
}

/* =======================
   MISC/HELPER CLASSES FOR SPACING
======================= */
.mt-1 { margin-top: var(--sp-sm); }
.mt-2 { margin-top: var(--sp-md); }
.mb-1 { margin-bottom: var(--sp-sm); }
.mb-2 { margin-bottom: var(--sp-md); }
.py-2 { padding-top: var(--sp-md); padding-bottom: var(--sp-md); }
.pr-2 { padding-right: var(--sp-md); }
.pl-2 { padding-left: var(--sp-md); }
.gap-1 { gap: var(--sp-sm); }
.gap-2 { gap: var(--sp-md); }

/* =======================
   SCROLL & FOCUS
======================= */
a:focus, button:focus, .cta-button:focus,
.nav a:focus, .mobile-nav a:focus {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 9px;
  background: #e5f7fe;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg,#113a65 0,#29a6d2 99%);
  border-radius: 8px;
}

/* =======================
   ANIMATIONS & MICRO-INTERACTIONS
======================= */
.card, .testimonial-card, .feature-grid li {
  will-change: transform;
  transition: transform 0.19s, box-shadow 0.17s, border-color 0.18s;
}
.cta-button, .cookie-btn, .cookie-settings-btn {
  transition: background .19s, color .17s, border-color .13s, box-shadow .17s;
}

/* =======================
   RESPONSIVE MEDIA QUERIES
======================= */
@media (max-width: 650px) {
  .brand-header { flex-direction: column; gap: 4px; }
  .footer-brand img { height: 34px; }
  .testimonial-card { flex-direction: column; gap: 5px; }
}

/* =======================
   COLOR CONTRAST IN TESTIMONIALS/REVIEWS
======================= */
.testimonials, .testimonials-realizacje {
  background: #fff;
}
.testimonial-card {
  background: var(--color-accent);
  color: #142440;
}
.testimonial-card .testimonial-name,
.testimonial-card .testimonial-rating {
  color: var(--color-primary);
  font-weight: bold;
}
.testimonial-card p {
  color: #0c1d2e;
}

/* =======================
   404 & EMPTY STATE (OPTIONAL)
======================= */
.page-404, .empty-state {
  text-align: center;
  padding: 80px 20px;
  font-family: var(--font-display);
  color: var(--color-primary);
}

/* =======================
   Z-INDEX MANAGEMENT
======================= */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 2000;
}

/*
---------------------------------------------------------------
NOTE: Add 'cookie-banner', 'cookie-modal-overlay', and respective
HTML markup via JS or server-side, as the HTML is not included.
You may need to append it on run-time for banner/modal display.
---------------------------------------------------------------
*/
