/* ========================================================
   CSS RESET & BASE
   ======================================================== */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #30343F;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #30343F;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
}
*:focus {
  outline: 2px solid #FFD34E;
  outline-offset: 2px;
}

/* ========================================================
   VARIABLES
   ======================================================== */
:root {
  --primary: #30343F;
  --secondary: #CED2D2;
  --accent: #FFD34E;
  --surface: #fff;
  --shadow-light: 0 2px 10px rgba(48,52,63,0.07);
  --shadow-heavy: 0 8px 32px rgba(48,52,63,0.09);

  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-main: 18px;
  --gap-main: 24px;
}

/* ========================================================
   CONTAINERS & LAYOUT
   ======================================================== */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-4px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FDF6E6;
  border-radius: 20px;
  box-shadow: 0 5px 32px rgba(240,197,59,0.11);
  min-width: 240px;
  max-width: 480px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid custom for Flexbox (FORCE FLEX) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature {
  background: var(--surface);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 10px rgba(48,52,63,0.07);
  padding: 32px 24px;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow .23s, transform .17s;
}
.feature:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px) scale(1.03);
}
/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0 20px 0;
}
.service-card {
  background: #F6F9FC;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(206,210,210,0.08);
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 340px;
  padding: 30px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-heavy);
  transform: scale(1.025);
}

.approach-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.approach-block > div {
  background: #f8f5ff;
  border-radius: 18px;
  flex: 1 1 240px;
  max-width: 340px;
  min-width: 210px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(130,80,255,0.06);
  border-left: 5px solid var(--accent);
  transition: border-color 0.18s;
}
.approach-block > div:hover {
  border-color: #FFD34E;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.team-member {
  background: linear-gradient(to top left, #FFF4E6 70%, #E8F1FC 100%);
  box-shadow: 0 1px 8px rgba(206,210,210,0.09);
  border-radius: 16px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 220px;
  padding: 28px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Article List & Blog Categories */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.article-list li {
  background: #fcfcfb;
  border-radius: 15px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 240px;
  box-shadow: 0 1px 8px rgba(130,80,255,0.06);
  padding: 26px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.blog-categories {
  margin: 16px 0 32px 0;
  background: #FFF4E8;
  padding: 14px 20px;
  border-radius: 13px;
  box-shadow: 0 0.5px 3px rgba(255,211,78,0.09);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-categories ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-left: 0;
}

/* Testimonial List */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 24px 0 16px 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.testimonial-card p {
  color: #23262E;
  font-size: 1.1em;
  font-style: italic;
}
.testimonial-card span {
  color: #525A7A;
  font-size: 0.99em;
  font-weight: 600;
  font-family: var(--font-body);
}

/* Contact Info */
.contact-info-block {
  background: #F6F9FC;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 20px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 1px 8px rgba(48,52,63,0.07);
  font-size: 1.04em;
}
.contact-info-block img {
  margin-right: 8px;
  vertical-align: -3px;
  width: 18px;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #525A7A;
  font-size: 1em;
  font-family: var(--font-body);
  transition: color 0.18s;
  position: relative;
}
.footer-nav a:hover::after {
  content: '';
  display: block;
  width: 80%;
  height: 2px;
  background: var(--accent);
  margin: 2px auto 0 auto;
  border-radius: 3px;
}


/* ========================================================
   TYPOGRAPHY
   ======================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.14;
  background: linear-gradient(90deg,#FFD34E 0%,#A784FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 0 rgba(200,100,50,0.05);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.18;
  color: #7053da;
  text-shadow: 1px 1px 0 rgba(170,120,240,0.04);
  position: relative;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
  color: #30343F;
  font-weight: 700;
  position: relative;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #785A28;
}
.text-section {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
p, li, span {
  font-family: var(--font-body);
  color: #23262E;
  font-size: 1.08em;
  line-height: 1.68;
}
.secondary-info {
  color: #7e69a7;
  font-size: 1em;
  font-style: italic;
  margin-top: 10px;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 8px;
  margin-top: 4px;
}
ul li, ol li {
  margin-bottom: 6px;
  font-size: 1em;
}
li strong {
  color: #30343F;
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 44px;
  padding: 0 32px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07em;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.23s, transform 0.17s;
  box-shadow: 0 1px 7px rgba(255, 211, 78, 0.05);
  margin: 12px 8px 12px 0;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #23262E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FBCC26;
  color: #23262E;
  box-shadow: 0 4px 20px rgba(255, 211, 78, 0.13);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #f8f5ff;
  color: #7053da;
  border: 2px solid #DBD3FF;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f3ecfe;
  color: #23262E;
  border-color: #FFD34E;
}

/* ========================================================
   HEADER & NAV
   ======================================================== */
header {
  background: #fff;
  border-bottom: 2px solid #FFD34E;
  box-shadow: 0 2px 9px rgba(255, 211, 78, 0.04);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  width: 135px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04em;
  color: #525A7A;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #30343F;
  background: #FFF4E6;
}

/* Burger Menu & Mobile Nav */
.mobile-menu-toggle {
  display: none;
  background: #FFF4E6;
  color: #23262E;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,211,78,0.08);
  position: absolute;
  right: 20px;
  top: 16px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
  z-index: 102;
  border: 2px solid #FFD34E;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD34E;
  color: #30343F;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; left:0; bottom:0;
  background: #fff;
  z-index: 9999;
  padding: 30px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: -2px 0 18px rgba(48,52,63,0.07);
  display: flex;
  flex-direction: column;
  gap: 42px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #FFD34E;
  color: #23262E;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-self: flex-end;
  border: 2px solid #FFD34E;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(255,211,78,0.13);
  margin-bottom: 14px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #FFD34E;
  border:2px solid #FFD34E;
}
.mobile-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.22em;
  padding: 12px 0;
  color: #23262E;
  border-radius: 8px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD34E;
  color: #30343F;
}

/* Hide desktop nav/show burger on mobile */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    min-width: 108px;
    font-size: 1em;
    padding: 0 20px;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ========================================================
   SECTIONS & COMPONENTS
   ======================================================== */
section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 0;
}
section:last-child {
  margin-bottom: 0;
}

/* Process Summary Block for Oferta */
.process-summary {
  background: #fffae6;
  padding: 18px 18px;
  border-radius: 12px;
  margin-top: 16px;
  color: #805038;
  font-size: 1.05em;
}

/* Project Types/Client Stories for Realizacje */
.project-types,
.client-stories {
  margin: 28px 0 20px 0;
  background: #EBF8FD;
  border-radius: 13px;
  padding: 15px 16px;
  color: #224e66;
  box-shadow: 0 1px 7px rgba(206,210,210,0.05);
}

/* Blog Buttons */
.article-list .btn-secondary {
  margin: 9px 0 0 0;
  font-size: 0.98em;
}


/* ========================================================
   FOOTER
   ======================================================== */
footer {
  background: #F6F9FC;
  padding: 38px 0 18px 0;
  box-shadow: 0 -1px 10px rgba(160,130,80,0.03);
  border-top: 1px solid #FFD34E;
  font-family: var(--font-body);
  font-weight: 500;
  color: #23262E;
  text-align: center;
}
footer p {
  margin-top: 6px;
  color: #999;
}

/* ========================================================
   COOKIE CONSENT BANNER
   ======================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9700;
  background: #30343F;
  color: #FFF;
  box-shadow: 0 -2px 28px rgba(30,20,0,0.11);
  padding: 22px 12px 22px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1.03em;
}
.cookie-banner .cookie-text {
  flex: 1 1 250px;
  max-width: 640px;
  margin-right: 16px;
  font-size: 1.03em;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  min-width: 92px;
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: bold;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 6px;
  transition: background 0.17s, color 0.17s, box-shadow .18s;
}
.cookie-banner .cookie-btn.accept {
  background: #FFD34E;
  color: #23262E;
  box-shadow: 0 1px 8px rgba(255,211,78,.12);
}
.cookie-banner .cookie-btn.accept:hover { background: #FBCC26; }
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #30343F;
  border: 1px solid #FFD34E;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #FFD34E;
  color: #23262E;
}
.cookie-banner .cookie-btn.settings {
  background: #2d2a3d;
  color: #FFD34E;
  border: 1px solid #FFD34E;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #FFD34E;
  color: #30343F;   
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(48,52,63,0.78);
  z-index: 9800;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.29s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px 28px 30px;
  min-width: 320px;
  max-width: 470px;
  box-shadow: 0 10px 32px rgba(33,32,30,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideInUp .32s cubic-bezier(.71,.17,.68,.97);
}
.cookie-modal-content h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
  background: none;
  color: #30343F;
  text-shadow: none;
}
.cookie-modal-close {
  position: absolute;
  top:13px; right:13px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFD34E;
  cursor: pointer;
  z-index: 30;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 12px;
  padding: 10px 18px;
  background: #F7F5FC;
  font-size: 1.04em;
}
.cookie-modal-category input[type='checkbox'] {
  width: 22px; height: 22px;
  accent-color: #FFD34E;
}
.cookie-modal-category.essential label { color: #ccc; }
.cookie-modal-category.essential input {display: none;}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
@keyframes slideInUp {
  from {transform: translateY(80px) scale(.98);} to {transform: translateY(0) scale(1);}
}

/* ========================================================
   MEDIA QUERIES (RESPONSIVE)
   ======================================================== */
@media (max-width: 850px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .text-section {
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid, .service-cards, .team-list, .card-container, .testimonial-list, .article-list, .approach-block, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; margin-bottom: 14px; }
  h3 { font-size: 1.1rem; }
  .section, section { padding: 28px 0; }
  .feature-grid, .service-cards, .team-list, .card-container, .testimonial-list, .article-list, .approach-block, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .service-card, .team-member, .article-list li, .approach-block > div {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 14px 10px;
  }
  .text-image-section { flex-direction: column; gap: 16px; align-items: stretch; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 530px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  h1 { font-size: 1.3rem; }
  .nav-bar { min-height: 58px; }
  .logo img { width: 95px; }
  .btn-primary, .btn-secondary { font-size: 0.99em; min-width: 84px; padding: 0 13px; }
  .footer-nav { gap: 10px; font-size: 0.99em; }
}

/* Ensure all flex containers wrap & spacing*/
.card-container, .feature-grid, .content-grid, .testimonial-list, .service-cards, .team-list, .approach-block, .article-list, .footer-nav { flex-wrap: wrap; gap: 20px; }

/* Prevent overlapping/ensure min margin between cards */
.card, .feature, .service-card, .team-member, .testimonial-card, .article-list li, .approach-block > div { margin-bottom: 20px; }

/* ===============================
   ARTISTIC UNIQUE ELEMENTS & EFFECTS
   =============================== */
.feature img, .service-card img, .team-member img, .approach-block img, .project-types img { 
  filter: drop-shadow(0 5px 13px rgba(255,211,78,0.13));
  width: 36px; height: 36px; margin-bottom: 7px;
}

.card:before, .feature:before, .service-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px; left: -18px;
  width: 42px;height: 42px;
  background: rgba(255,211,78,0.17);
  border-radius: 50%;
  z-index: 0;
  filter: blur(3px);
  pointer-events: none;
}
.card:after, .feature:after, .service-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -14px; right: -16px;
  width: 21px; height: 21px;
  background: rgba(130,80,255,0.16);
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
  pointer-events: none;
}
@media (max-width: 700px) {
  .card:before, .feature:before, .service-card:before, .card:after, .feature:after, .service-card:after {
    display: none;
  }
}

/* Artistic Elements: headings underline */
h2::after {
  content: '';
  display: block;
  width: 75px;
  height: 5px;
  background: linear-gradient(90deg,#FFD34E 0%,#7053da 100%);
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 2px;
}

/* Artistic Small Dots for Buttons */
.btn-primary::before {
  content: '';
  display: inline-block;
  width:7px; height:7px;
  background: #7053da;
  border-radius: 50%;
  margin-right:10px;
  margin-bottom:1px;
  opacity: 0.65;
}

/* ===============================
   SELECTION & SCROLLBAR
   =============================== */
::selection {
  background: #FFD34E;
  color: #30343F;
}
::-webkit-scrollbar {
  width: 8px;
  background: #F6F9FC;
}
::-webkit-scrollbar-thumb {
  background-color: #FFD34E;
  border-radius: 6px;
}

/* Ensures no absolute positioning for content cards, only for deco */
.card, .feature, .service-card, .team-member, .testimonial-card, .article-list li, .approach-block > div {
  position: relative;
  z-index: 1;
}

/* Ensures testimonial readability */
.testimonial-card, .testimonial-card * {
  color: #23262E !important;
  background: inherit;
}

/* ===============================
   PRINT/ACCESSIBILITY
   =============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {display:none;}
  body {background:#fff; color:#23262E;}
}
