/* ================================== */
/*      CSS RESET & BASE STYLES       */
/* ================================== */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FA;
  color: #204770;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  color: #204770;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:active, a:focus {
  color: #ee3585;
}

button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

input, textarea {
  font-family: inherit;
  border: 1.5px solid #A0B3C6;
  border-radius: 18px;
  padding: 10px 16px;
  font-size: 16px;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  border: 2px solid #204770;
  outline: none;
}

/* ================================== */
/*        BRAND COLORS & FONTS        */
/* ================================== */
:root {
  --primary: #204770;
  --secondary: #A0B3C6;
  --accent: #F6F8FA;
  --bright-pink: #ee3585;
  --fun-blue: #5C9AF5;
  --fun-green: #1ACBAA;
  --yellow: #FFD44F;
  --white: #fff;
  --shadow: 0 2px 8px 0 rgba(32,71,112,0.09), 0 1.5px 8px 0 rgba(34,31,68,0.07);
  --radius: 24px;
  --display-font: 'Montserrat', system-ui, Arial, sans-serif;
  --body-font: 'Roboto', system-ui, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 800;
  color: #204770;
  margin-bottom: 14px;
}

h1 { font-size: 2.5rem; letter-spacing: -1.3px; color: var(--bright-pink); font-family: var(--display-font), sans-serif; }
h2 { font-size: 2rem; color: var(--fun-blue); font-family: var(--display-font), sans-serif; }
h3 { font-size: 1.25rem; color: var(--fun-green); font-family: var(--display-font), sans-serif; }

p, li, label, span, input, textarea {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #204770;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

/* ================================== */
/*            LAYOUT BASE             */
/* ================================== */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Content Wrapper: for flex layouts in sections */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.text-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 720px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
}

/* ================================== */
/*         PLAYFUL DYNAMIC UI         */
/* ================================== */
body {
  background: linear-gradient(120deg, #fff 0%, #F6F8FA 80%);
}

section {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 20px 0 0 0;
}
.feature-grid li {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 6px 0 rgba(92,154,245,0.09);
  padding: 30px 22px 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  min-height: 200px;
  font-family: var(--body-font);
  transition: transform 0.25s, box-shadow 0.23s;
  border: 2px solid var(--white);
}
.feature-grid li img {
  margin-bottom: 18px;
  width: 48px;
  height: 48px;
  animation: bounceIn 1s cubic-bezier(.36, .07, .19, .97) 0s 1;
}
.feature-grid li:hover {
  transform: translateY(-8px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(92,154,245,0.16), 0 1.5px 10px 0 rgba(34,31,68,0.13);
  border-color: var(--fun-blue);
}

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0.5; }
  55% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  padding: 24px 18px;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-width: 250px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(34,31,68,0.12);
  transform: scale(1.03) rotate(-1deg);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 9px solid var(--fun-blue);
  transition: box-shadow 0.22s, border-color 0.22s;
  max-width: 460px;
  min-width: 200px;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--bright-pink);
  font-weight: 800;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(34,31,68,0.16);
  border-left-color: var(--bright-pink);
}

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

/* Article Previews */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.article-preview {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 20px;
  flex: 1 1 260px;
  min-width: 200px;
  transition: box-shadow 0.16s, transform 0.18s;
  border: 2px solid #fff;
}
.article-preview:hover {
  box-shadow: 0 9px 28px 0 rgba(234,53,133,0.14);
  transform: scale(1.02) rotate(0.5deg);
  border-color: var(--bright-pink);
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.faq-list > div {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  flex: 1 1 270px;
  min-width: 220px;
}

.categories {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: bold;
}
.categories ul {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.categories li {
  background: var(--fun-green);
  color: #fff;
  border-radius: 16px;
  padding: 7px 16px;
  font-size: 0.95rem;
}

.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.stepper li {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  flex: 1 1 250px;
  min-width: 180px;
  position: relative;
  font-family: var(--body-font);
}
.step-label {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ================================== */
/*            HEADER/NAV              */
/* ================================== */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 3px 17px 0 rgba(32,71,112,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 16px;
}
header img {
  max-height: 44px;
  margin-right: 12px;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1rem;
  padding: 9px 14px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
}
.main-nav a.nav-cta {
  background: var(--bright-pink);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 2px 15px 0 rgba(234,53,133,0.10);
  border-radius: 17px;
  padding: 10px 19px;
  margin-left: 18px;
  transition: box-shadow 0.18s, background 0.19s;
}
.main-nav a.nav-cta:hover { background: #ee3085; box-shadow: 0 4px 25px 0 rgba(234,53,133,0.15); }
.main-nav a:hover, .main-nav a.active {
  background: var(--fun-blue);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: var(--bright-pink);
  color: #fff;
  font-size: 2rem;
  border-radius: 16px;
  padding: 6px 14px 7px 14px;
  z-index: 1002;
  margin-left: 20px;
  box-shadow: 0 2px 8px rgba(234,53,133,0.13);
  transition: background 0.14s, color 0.13s, box-shadow 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: #ef59a6; color: #fff; box-shadow: 0 4px 21px rgba(234,53,133,0.17); }

/* ================================== */
/*         MOBILE MENU STYLES         */
/* ================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg,#F6F8FA 60%, #fff 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 45px 30px 28px 30px;
  min-height: 100vh;
  transform: translateX(110%);
  box-shadow: 0 1.5px 28px 0 rgba(32,71,112,0.17);
  transition: transform 0.38s cubic-bezier(.56,.33,0,1.01);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--bright-pink);
  background: transparent;
  border: none;
  align-self: flex-end;
  border-radius: 10px;
  padding: 6px 14px;
  margin-bottom: 24px;
  box-shadow: 0 1px 8px 0 rgba(234,53,133,0.08);
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: var(--fun-blue); color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--display-font);
  font-weight: 700;
  color: var(--primary);
  background: var(--accent);
  padding: 12px 20px;
  margin-bottom: 5px;
  border-radius: 10px;
  font-size: 1.15rem;
  box-shadow: 0 1.5px 9px 0 rgba(32,71,112,0.07);
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-green);
  color: #fff;
}

@media (max-width: 990px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}

/* Hide mobile-menu by default for larger screens */
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================== */
/*           BUTTONS/CTAs             */
/* ================================== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 1.13rem;
  letter-spacing: 0.02em;
  padding: 13px 32px;
  margin-top: 7px;
  margin-bottom: 3px;
  box-shadow: 0 2px 12px rgba(32,71,112,0.06);
  transition: background 0.17s, color 0.17s, box-shadow 0.2s, transform 0.14s;
  border: none;
  outline: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--bright-pink);
  color: #fff;
  font-size: 1.16rem;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ef59a6;
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 5px 20px 0 rgba(234,53,133,0.13);
}
.btn-secondary {
  background: var(--fun-blue);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus { background: #3576d3; }

.filter-options {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.filter-options span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05em;
}
.filter-options button {
  background: var(--yellow);
  color: #204770;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 6px 17px;
  border: none;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.13s, box-shadow 0.13s;
}
.filter-options button:focus, .filter-options button:hover {
  background: var(--fun-blue);
  color: #fff;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.search-bar input[type="text"] {
  flex: 1 1 220px;
  min-width: 120px;
  background: #fff;
  border: 1.5px solid var(--fun-blue);
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 1.11rem;
  transition: border 0.18s;
}
.search-bar input:focus {
  border: 2px solid var(--bright-pink);
}
.search-bar button {
  min-width: 90px;
}

/* CTA Section */
.text-section .btn-primary {
  font-size: 1.13rem;
  padding: 14px 35px;
}

/* ================================== */
/*             FOOTER                 */
/* ================================== */
footer {
  margin-top: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px 30px 0 0;
  padding: 38px 0 24px 0;
  box-shadow: 0 -2px 18px 0 rgba(32,71,112,0.05);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--display-font);
  opacity: 0.87;
  font-weight: 600;
  transition: opacity 0.17s;
  font-size: 1.01em;
}
.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 1;
  text-decoration: underline wavy var(--fun-blue) 1.5px;
}
footer p {
  font-size: 0.98em;
  color: #dde7fa;
  word-break: break-word;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ================================== */
/*         COOKIE CONSENT BANNER       */
/* ================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -2px 25px 0 rgba(32,71,112,0.12);
  border-radius: 28px 28px 0 0;
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 23px 16px 23px 32px;
  gap: 34px;
  font-family: var(--body-font);
  font-size: 1.04rem;
  transition: transform 0.28s cubic-bezier(.56,.33,0,1.01), opacity 0.17s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  max-width: 630px;
  line-height: 1.5;
  color: #204770;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 18px;
  margin-right: 3px;
  border: none;
  background: var(--fun-blue);
  color: #fff;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 0.5px 8px 0 rgba(32,71,112,0.08);
}
.cookie-banner .btn-accept {
  background: var(--fun-green);
}
.cookie-banner .btn-accept:hover { background: #16b39b; }
.cookie-banner .btn-reject {
  background: var(--bright-pink);
}
.cookie-banner .btn-reject:hover { background: #ef59a6; }
.cookie-banner .btn-settings {
  background: #fff; color: var(--fun-blue); border: 2px solid var(--fun-blue); }
.cookie-banner .btn-settings:hover {
  background: var(--fun-blue);
  color: #fff;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 4100;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 16px 60px 0 rgba(32,71,112,0.19);
  padding: 40px 32px;
  width: 94vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-title {
  font-family: var(--display-font);
  font-weight: bold;
  font-size: 1.25em;
  margin-bottom: 10px;
  color: var(--fun-blue);
}
.cookie-modal .cookie-category {
  font-family: var(--body-font);
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1em;
  margin-left: 2px;
  color: var(--primary);
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #e3e3e3;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--fun-green);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 2px; left: 2px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.14s;
  box-shadow: 0 .8px 4px rgba(32,71,112,0.08);
}
.cookie-modal .cookie-toggle:checked:before {
  left: 22px;
}
.cookie-modal .cookie-essential[disabled], .cookie-modal .cookie-essential {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal .btn-modal-close {
  background: var(--primary);
  color: #fff;
  padding: 9px 15px;
  border-radius: 10px;
}
.cookie-modal .btn-modal-close:hover {
  background: var(--fun-blue);
}
/* Overlay for Cookie Modal */
.cookie-modal-overlay {
  background: rgba(32,71,112,0.13);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4090;
  pointer-events: all;
}
.cookie-modal-overlay.hide { display: none; }

/* ================================== */
/*          RESPONSIVE DESIGN         */
/* ================================== */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid li, .stepper li, .faq-list > div, .article-preview {
    width: 100%;
    min-width: 0;
  }
  .feature-grid, .stepper, .faq-list, .article-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    gap: 8px;
    font-size: 0.96em;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    height: 67px;
    padding: 0 10px;
  }
  .section, section {
    padding: 30px 4vw;
    margin-bottom: 32px;
    border-radius: 18px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
  .content-wrapper, .text-section {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-grid, .faq-list, .stepper, .article-list {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  footer p {
    font-size: 0.91em;
    text-align: left;
  }
  .search-bar {
    flex-direction: column;
    gap: 11px;
    align-items: stretch;
  }
  .filter-options {
    gap: 8px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 12px;
  }
  .article-preview,
  .faq-list > div,
  .feature-grid li,
  .stepper li,
  .card {
    min-width: 0;
    width: 100%;
    padding: 18px 11px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 17px 6vw 17px 6vw;
    font-size: 0.97em;
  }
  .cookie-modal {
    padding: 24px 8vw;
    width: 98vw;
    max-width: 370px;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .cookie-banner {
    font-size: 0.9em;
    padding: 12px 5vw 14px 5vw;
  }
  .cookie-modal { padding: 15px 2vw; }
}

/* ================================== */
/*        MICRO-INTERACTIONS          */
/* ================================== */
section, .card, .testimonial-card, .article-preview, .faq-list > div {
  transition: box-shadow 0.18s, transform 0.16s;
}
h1, h2, h3 {
  animation: fadeInText 1.2s both;
}
@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn-primary, .btn-secondary {
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.13s;
  will-change: transform;
}

/* Bubbles Decoration - playfulness */
section::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
  animation: floatBubble 4.8s infinite ease-in-out alternate;
}
@keyframes floatBubble {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.12) translateY(-20px); }
}
section { position: relative; z-index: 1; }

/* Remove bubble on small screens */
@media (max-width:700px){
  section::after{display:none;}
}

/* ================================== */
/*          UTILITIES/SPACING         */
/* ================================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.rounded { border-radius: var(--radius) !important; }

/* ================================== */
/*             PRINT                  */
/* ================================== */
@media print {
  html, body, section, footer, header, main, .container { background: #fff !important; color: #000 !important; }
  .main-nav, .mobile-menu-toggle, .mobile-menu, .footer-nav, .cookie-banner, .cookie-modal, .cookie-modal-overlay {display:none !important;}
}
