/* ===============================
   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,
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%;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #F4F5F7;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  box-sizing: border-box;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 24px;
}
a {
  color: #1A3554;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E4B660;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 16px;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background .18s, color .18s;
}
input, textarea, select {
  font-family: inherit;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #e4e4e4;
  padding: 8px 12px;
}

/* ===============================
   VARIABLES & BRAND COLORS
   =============================== */
:root {
  --primary: #1A3554;
  --secondary: #E4B660;
  --accent: #F4F5F7;
  --fun-red: #FF6584;
  --fun-blue: #44A8F5;
  --fun-green: #3FD6A5;
  --fun-yellow: #FFE066;
  --white: #fff;
  --black: #141622;
  --text-dark: #181B1F;
  --text-light: #fff;
  --box-shadow-1: 0 2px 12px 0 rgba(26,53,84,0.08);
  --box-shadow-2: 0 4px 24px 0 rgba(26,53,84,0.16);
  --radius: 18px;
}

/* ===============================
   TYPOGRAPHY & FONTS
   =============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: .01em;
  line-height: 1.12;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--fun-red);
  text-shadow: 2px 2px 0 var(--fun-yellow);
}
h2 {
  font-size: 1.55rem;
  color: var(--fun-blue);
  margin-bottom: 20px;
}
h3 {
  font-size: 1.19rem;
  color: var(--primary);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: var(--primary);
}
p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
strong, b {
  color: var(--fun-green);
}

/* ===============================
   GENERAL LAYOUT
   =============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow-1);
  width: 100%;
}
/* CTA Section for color pop */
.cta-section {
  background: var(--fun-yellow);
  border: 2px solid var(--fun-blue);
  box-shadow: 0 4px 18px 0 rgba(68,168,245,0.09);
  border-radius: var(--radius);
  text-align: center;
  align-items: center;
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  background: var(--white);
  position: relative;
  padding: 0;
  box-shadow: 0 2px 8px 0 rgba(26,53,84,0.06);
  z-index: 99;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 18px 16px;
  gap: 16px;
  justify-content: space-between;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform .22s;
}
.logo:hover img {
  transform: scale(1.13) rotate(-6deg);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--fun-red);
  border-radius: 3px;
  transition: width .21s;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

.cta-btn {
  display: flex;
  align-items: center;
  background: var(--fun-green);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 17px;
  margin-left: 20px;
  box-shadow: 0 2px 16px 0 rgba(63,214,165,0.15);
  letter-spacing: .07em;
  border: 2px solid var(--fun-green);
  transition: background .18s, color .18s, transform .18s;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--fun-yellow);
  transform: scale(1.07) rotate(-2deg);
  border-color: var(--fun-red);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--fun-red);
  color: var(--white);
  padding: 6px 17px 8px 17px;
  border-radius: 18px;
  margin-left: 10px;
  transition: background .18s, color .18s, box-shadow .18s;
  box-shadow: var(--box-shadow-2);
  line-height: 1;
  z-index: 99;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--fun-yellow);
}

/* Hamburger only appears on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 12px;
    margin-right: 6px;
  }
}

/* ===============================
   MOBILE MENU OVERLAY
   =============================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  background: var(--fun-blue);
  color: var(--white);
  position: fixed;
  top: 0; left: 0;
  width: 99vw;
  height: 100vh;
  z-index: 2002;
  transform: translateX(-110vw);
  pointer-events: none;
  opacity: 0;
  transition: transform .38s cubic-bezier(.68,-0.55,.27,1.55), opacity .29s;
  box-shadow: 4px 0 44px 0 rgba(44,74,175,.18);
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--fun-red);
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 24px 28px 16px 0;
  padding: 6px 22px 8px 22px;
  border-radius: 18px;
  box-shadow: var(--box-shadow-2);
  z-index: 2222;
  transition: background .18s, color .18s, transform .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--white);
  color: var(--fun-red);
  transform: scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 0 38px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 18px 0 10px 0;
  border-bottom: 2px solid var(--fun-yellow);
  width: 100%;
  transition: background .17s, color .18s;
  border-radius: 8px;
  margin-bottom: 2px;
  letter-spacing: .06em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-green);
  color: var(--primary);
}

/* ===============================
   SECTIONS & FLEX LAYOUTS
   =============================== */
.feature-grid, .service-list, .team-list, .tips-list, .testimonial-list, .case-study-list, .blog-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
  justify-content: flex-start;
}
/* Card containers: for generic use */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--box-shadow-1);
  border-radius: var(--radius);
  background: var(--white);
}

.features,
.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: flex-start; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px 16px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 1px 4px 32px 0 rgba(44,162,245,0.10);
  min-width: 270px;
  max-width: 400px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .18s, border .18s;
  border: 2px solid var(--fun-blue);
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-7px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 40px 0 rgba(26,53,84,0.09);
  border-color: var(--fun-red);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: .8em;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .96rem;
  color: var(--fun-green);
  font-weight: bold;
}

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

/* About team member & tips */
.team-member, .tip {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--box-shadow-1);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow .17s, transform .12s, border .12s;
  border-left: 6px solid var(--fun-yellow);
}
.team-member:hover, .tip:hover {
  box-shadow: 0 8px 36px 0 rgba(68,168,245,0.09);
  transform: scale(1.04) rotate(2deg);
  border-left: 6px solid var(--fun-red);
}

/* Services ‘card’ */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(244,181,96,.11);
  padding: 30px 28px 30px 28px;
  margin-bottom: 20px;
  min-width: 260px;
  width: 100%;
  max-width: 370px;
  gap: 14px;
  border: 2.5px solid var(--fun-yellow);
  transition: box-shadow .17s, transform .16s, border .15s;
}
.service-card:hover {
  border: 2.5px solid var(--fun-blue);
  transform: translateY(-5px) scale(1.025) rotate(-2.5deg);
  box-shadow: 0 8px 40px 0 rgba(26,53,84,0.09);
}
.service-card img {
  width: 46px;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--fun-red);
  font-size: 1.11rem;
  letter-spacing:.02em;
  margin-top: 5px;
}

/* BLOG HEADLINES */
.blog-headline {
  background: var(--fun-yellow);
  border-radius: 12px;
  box-shadow: var(--box-shadow-1);
  padding: 18px 18px 12px 18px;
  margin-bottom: 18px;
  min-width: 230px;
  position: relative;
}
.blog-headline:hover {
  box-shadow: 0 5px 18px 0 rgba(244,181,96,0.18);
  transform: scale(1.03) rotate(-2deg);
}

/* Case Study (Realizacje) */
.case-study {
  background: var(--fun-blue);
  color: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 3px 18px rgba(68,168,245,0.13);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 470px;
  flex: 1 1 340px;
  position: relative;
}
.case-study h3 {
  color: var(--fun-yellow);
}
.case-study ul, .case-study p {
  color: var(--white);
}

/* Contact Details Layout */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.contact-info, .contact-map {
  min-width: 230px;
  flex: 1 1 320px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px 18px 22px;
  box-shadow: var(--box-shadow-1);
  font-size: 1.06rem;
}
.contact-info p {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 13px;
}
.contact-info img {
  width: 22px;
  height: 22px;
}
.contact-map img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 10px;
  filter: hue-rotate(-15deg) drop-shadow(0 4px 8px #c3e3fa);
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 22px 0;
  margin-top: 60px;
  font-size: 1rem;
  letter-spacing:.01em;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 56px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--fun-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  transition: color .15s;
  font-weight: 700;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--fun-green);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--accent);
  font-size: .97rem;
  margin-bottom: 0;
}
.footer-info img {
  vertical-align: middle;
  margin-right: 5px;
  width: 17px;
  opacity: .84;
}
footer p, footer a {
  color: var(--accent);
  margin-bottom: 6px;
}
footer a {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 6vw;
  }
  .footer-logo img {
    width: 46px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 14px;
  }
}
@media (max-width: 830px) {
  .container { padding: 0 3vw; }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .section { padding: 28px 6px; }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid, .service-list, .team-list, .tips-list, .testimonial-list, .case-study-list, .blog-list, .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .case-study, .service-card,.team-member, .tip, .testimonial-card, .blog-headline, .contact-info, .contact-map {
    min-width: 0;
    width: 100%;
    max-width: 99vw;
  }
  .cta-section {
    padding: 32px 8px;
  }
  .main-nav {
    display: none !important;
  }
}
@media (max-width: 427px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .cta-btn { font-size: 1em; padding: 9px 12px; }
}

/* ===============================
   SPACING, GAPS & FLEXBOX REQS
   =============================== */
section { margin-bottom: 60px; }
.card-container,
.feature-grid,
.service-list,
.team-list,
.tips-list,
.testimonial-list,
.case-study-list,
.blog-list,
.contact-details {
  gap: 24px;
  margin-bottom: 20px;
}
.card { margin-bottom: 20px; position: relative; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { align-items: center; gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===============================
   INPUTS & FORMS (if any)
   =============================== */
input, textarea, select {
  border: 1.5px solid #e4b66044;
  padding: 8px 12px;
  border-radius: 7px;
  margin-bottom: 18px;
  font-size: 16px;
  outline: none;
  transition: border .14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--fun-blue);
}

/* ===============================
   ANIMATIONS & MICRO-INTERACTIONS
   =============================== */
@keyframes float-bounce {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.03) rotate(-1deg); }
  100% { transform: translateY(0) scale(1); }
}
.logo img, .cta-btn, .testimonial-card, .team-member, .service-card, .tip, .case-study, .blog-headline {
  will-change: transform, box-shadow;
}
.logo img:hover {
  animation: float-bounce .68s cubic-bezier(.67,.13,.59,.84);
}
.cta-btn:active {
  animation: float-bounce .41s cubic-bezier(.73,.06,.59,.91);
}

/* Fun icon wiggle on hover */
.feature img, .service-card img, .case-study img, .tip img {
  transition: transform .18s;
}
.feature img:hover, .service-card img:hover, .case-study img:hover, .tip img:hover {
  transform: scale(1.17) rotate(9deg);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--fun-blue);
  color: var(--white);
  z-index: 3100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 3vw;
  box-shadow: 0 -2px 18px 0 rgba(68,168,245,.18);
  border-top: 3px solid var(--fun-yellow);
  animation: cookie-slide-in .65s cubic-bezier(.48,-0.14,.72,1.29);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(120%); }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1 1 340px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 18px;
  background: var(--fun-yellow);
  color: var(--primary);
  border: 2px solid var(--fun-green);
  margin-right: 0;
  transition: background .17s, color .14s, border .13s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--fun-green);
  color: var(--white);
  border: 2px solid var(--fun-yellow);
}
.cookie-settings-btn {
  background: var(--fun-blue);
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: 0;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--white);
  color: var(--fun-blue);
  border: 2px solid var(--fun-green);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,53,84,0.86);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 26px;
  box-shadow: 0 4px 32px rgba(44,168,245,0.13);
  min-width: 280px;
  max-width: 94vw;
  width: 400px;
  padding: 36px 22px 22px 28px;
  text-align: left;
  position: relative;
  z-index: 3250;
  animation: cookie-pop .31s cubic-bezier(.7,-0.4,.45,1.0);
}
@keyframes cookie-pop {
  0% { opacity: 0; transform: scale(.84) translateY(50px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: var(--fun-blue);
  margin-bottom: 22px;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 8px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
}
/* Fake toggles for cookies modal */
.cookie-toggle {
  appearance: none;
  width: 42px; height: 24px;
  border-radius: 16px;
  background: #eee;
  position: relative;
  outline: none;
  transition: background .18s;
  margin-left: 14px;
}
.cookie-toggle:checked {
  background: var(--fun-green);
}
.cookie-toggle:disabled {
  background: #FFD3E3;
  opacity: 0.8;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 3px;
  width: 18px; height: 18px;
  background: var(--fun-blue);
  border-radius: 50%;
  transition: left .19s, background .18s;
}
.cookie-toggle:checked::before {
  left: 22px;
  background: var(--fun-yellow);
}
.cookie-toggle:disabled::before {
  background: #FFD3E3;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  font-weight: 900;
  padding: 10px 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  font-size: 1.45rem;
  color: var(--fun-red);
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--fun-blue);
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 13px 3vw 16px 3vw; gap: 12px; }
  .cookie-modal { width: 98vw; max-width: 99vw; min-width: 0; padding: 28px 7vw 18px 7vw; }
}

/* ===============================
   MISC. (for fun playful)  
   =============================== */
.feature, .service-card, .case-study, .team-member, .tip, .testimonial-card, .blog-headline {
  /* fun border-doodle effect using box-shadows */
  box-shadow: 0 6px 26px 0 rgba(244,181,96,.05), 0 0.5px 1.5px rgba(44,168,245,0.10);
  border-radius: var(--radius);
}

/* Fun color dots (decorative, not content) */
.decor-dot {
  position: absolute;
  width: 22px; height:22px;
  border-radius: 50%;
  background: var(--fun-red);
  opacity: .2;
  top: -14px; right: -14px;
  z-index: 1;
  animation: float-bounce .88s infinite ease-in-out alternate;
  pointer-events: none;
}
.decor-dot2 {
  background: var(--fun-yellow);
  width: 18px; height: 18px;
  top: unset; bottom: -10px; left: -11px;
}

/* ===============================
   PRINT OVERRIDE
   =============================== */
@media print {
  * { box-shadow: none !important; background: none !important; color: #212121 !important; }
  .mobile-menu, .cookie-banner, .cookie-modal-overlay, header, footer { display: none !important; }
  section, .container { padding: 0 !important; margin: 0 !important; }
}
