/* =============================
   ERGOBIURO — ELEGANT_CLASSIC STYLE SHEET
   ============================= */

/* ===== 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 { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: "Georgia", 'Open Sans', serif;
  font-size: 16px;
  line-height: 1.625;
  background: #F4F6F8;
  color: #262626;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }

/* ===== BRAND COLORS AND FONTS ===== */
:root {
  --primary-color: #224274;
  --secondary-color: #F4F6F8;
  --accent-color: #F29B20;
  --neutral-dark: #2D2A26;
  --neutral-mid: #778ca3;
  --neutral-light: #ffffff;
  --shadow: 0 2px 12px 0 rgba(34, 66, 116, 0.06);
  --border-radius: 10px;
}

/* Elegant Classic Font Stack */
body, html {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background-color: var(--secondary-color);
  color: var(--neutral-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', "Montserrat", serif;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5, h6 { font-size: 1rem; }

p { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; margin-bottom: 18px; }
strong, b { font-weight: 700; }

/* ================================
   CONTAINER & SECTION LAYOUTS
   ================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--neutral-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.section:hover {
  box-shadow: 0 4px 20px 0 rgba(34,66,116,0.13);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================================
   FLEXBOX LAYOUT PATTERNS (NO GRID)
   ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--neutral-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow .3s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(34,66,116,0.13);
  transform: translateY(-3px) scale(1.01);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--border-radius);
  background: #FCFCFC;
  box-shadow: 0 2px 10px rgba(34,66,116,0.06);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background: var(--neutral-light);
  border-bottom: 1px solid #e4e5e7;
  padding: 0;
  box-shadow: 0 2px 10px rgba(34,66,116,0.02);
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.06rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-color);
  color: var(--neutral-light);
}
.button.primary {
  background: var(--primary-color);
  color: var(--neutral-light);
}
.button {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 7px;
  padding: 13px 32px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px 0 rgba(242,155,32, .08);
  margin-left: 16px;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: #1d355e;
  color: var(--accent-color);
}
.button:hover, .button:focus {
  background: #ffd08a;
  color: var(--primary-color);
  box-shadow: 0 4px 12px 0 rgba(34,66,116,0.10);
}

/* ========== Responsive Burger Menu ========== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  margin-left: 18px;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 42, 70, 0.90);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .40s cubic-bezier(.7,.2,.3,1.0);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--neutral-light);
  padding: 17px 22px;
  cursor: pointer;
  transition: color .15s;
  align-self: flex-end;
}
.mobile-menu-close:hover {
  color: var(--accent-color);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  color: var(--neutral-light);
  font-family: 'Montserrat', serif;
  font-size: 1.3rem;
  padding: 17px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-color);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .button { font-size: 1rem; padding: 12px 18px; }
}

/* ========== HERO, SECTIONS, FEATURES ========== */
.hero {
  background: linear-gradient(110deg, #F4F6F8 65%, #fdf7ee 100%);
  box-shadow: none;
  border-radius: 0;
  padding: 52px 0 36px 0;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
  gap: 18px;
}
.hero h1 {
  color: var(--primary-color);
  font-family: 'Georgia', serif;
  font-size: 2.6rem;
  font-weight: 700;
}
.hero p {
  color: var(--neutral-dark);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.13rem;
  margin-bottom: 22px;
}

.features {
  background: var(--neutral-light);
  padding-bottom: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 200px;
  min-width: 210px;
  background: var(--secondary-color);
  border-radius: 9px;
  padding: 28px 22px 18px 22px;
  box-shadow: 0 2px 8px rgba(34,66,116,.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-grid li img {
  height: 36px; width: 36px; margin-bottom: 13px; }
.feature-grid li h3 {
  font-size: 1.16rem; margin-bottom: 6px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px rgba(34,66,116,0.12);
  transform: translateY(-2px) scale(1.01);
}

.products-preview, .services-overview {
  background: var(--neutral-light);
  color: var(--neutral-dark);
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  font-family: 'Montserrat',serif;
  font-weight: 500;
  font-size: 1.06rem;
  color: var(--primary-color);
}
.category-list li {
  background: #f6f8fa;
  padding: 9px 20px;
  border-radius: 7px;
  border: 1px solid #ececec;
}
.top-products {
  margin: 28px 0 20px 0;
}
.top-products h3 {
  color: var(--primary-color);
  font-size: 1.17rem;
}
.top-products ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.top-products li {
  background: #f4efe5;
  border-radius: 5px;
  padding: 7px 18px;
  font-size: .98rem;
  color: #715115;
}

.service-summary, .usp-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0 18px 0;
}
.service-summary li, .usp-highlights ul li {
  background: #f7f9fa;
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 1.02rem;
}
.service-summary li img {
  height: 19px; width: 19px; margin-right: 8px; vertical-align: middle;
}
.usp-highlights ul {
  gap: 12px;
}
.usp-highlights h3 {
  color: var(--primary-color);
  font-size: 1.08rem;
  margin-bottom: 7px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--secondary-color);
  padding-bottom: 36px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  flex: 1 1 310px;
  max-width: 370px;
  background: #fffffe;
  color: #272e36;
  border-radius: var(--border-radius);
  padding: 31px 26px 19px 26px;
  font-family: 'Georgia', serif;
  font-style: italic;
  position: relative;
  box-shadow: 0 3px 14px rgba(34,66,116,0.04);
  transition: box-shadow 0.2s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(34,66,116,.12);
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  color: #272e36;
  padding: 0;
  margin: 0;
}
.testimonial-client {
  display: block;
  color: #7383a1;
  font-size: 0.98rem;
  font-style: normal;
  margin-top: 15px;
  font-family: 'Open Sans',sans-serif;
}
.company-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
}
.company-logos img {
  height: 38px;
  opacity: .98;
  filter: grayscale(100%);
  transition: filter 0.2s, opacity .15s;
}
.company-logos img:hover { filter: none; opacity: 1; }

/* ========== CTA SECTION ========== */
.cta, .cta-offer, .cta-products, .cta-realizacje, .cta-contact {
  background: linear-gradient(105deg,#f4f6f8 50%,#f2f7fc 100%);
  box-shadow: 0 2px 14px 0 rgba(34, 66, 116, .07);
  border-radius: var(--border-radius);
  margin-bottom: 42px;
  padding: 45px 20px 40px 20px;
  text-align: center;
}
.cta h2, .cta-offer h2, .cta-products h2, .cta-realizacje h2, .cta-contact h2 {
  font-size: 2.08rem;
  margin-bottom: 21px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary-color);
  color: var(--neutral-light);
  padding: 38px 0 22px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 10px 0 rgba(34,66,116,0.03);
}
footer .container {
  flex-direction: row;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img { height: 32px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #cdd6e8;
  font-family: 'Open Sans',sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--accent-color); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact img { height: 17px; width: 17px; margin-right: 6px; vertical-align: middle; }

/* ===========================
   PRODUCT & SERVICE LISTINGS
   =========================== */
.service-categories, .service-list, .product-categories-grid, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 18px 0;
}
.service-categories li, .service-list li, .product-categories-grid li, .benefit-list li {
  flex: 1 1 192px;
  background: #f7f7f9;
  border-radius: 9px;
  padding: 18px 16px 13px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #455577;
  font-size: 1.01rem;
  box-shadow: 0 1px 8px rgba(34,66,116,.06);
  min-width: 160px;
}
.service-list li img, .product-categories-grid li img, .benefit-list li img { margin-right: 12px; width: 26px; height: 26px; }

.search-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 19px;
}
#product-search {
  padding: 9px 13px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  font-size: 1rem;
  min-width: 235px;
  background: var(--neutral-light);
  font-family: 'Open Sans',sans-serif;
}
#product-search:focus {
  outline: 2px solid var(--primary-color);
}

.featured-products ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 11px;
}
.featured-products li {
  background: #f9f5ec;
  border-radius: 5px;
  padding: 8px 19px;
  font-size: .97rem;
  color: #715115;
}

/* ===========================
   CASE STUDIES / REALIZACJE
   =========================== */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.case-card {
  background: #fcfcfc;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px 0 rgba(34,66,116,0.07);
  padding: 36px 28px 28px 28px;
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  position: relative;
}
.case-card:hover {
  box-shadow: 0 6px 22px 0 rgba(34,66,116,0.10);
}
.case-card h2 {
  font-size: 1.18rem; margin-bottom: 7px;
}
.client-testimonial-short blockquote {
  font-family: 'Georgia',serif; font-size: 1.05rem;
  color: #2c3c5c;
  font-style: italic;
  background: none;
  border-left: 3px solid var(--accent-color);
  padding-left: 10px;
  margin: 0; margin-top: 12px;
}
.client-testimonial-short span {
  font-size: .97rem; font-family: 'Open Sans',sans-serif; color: #767c94; display: block; margin-top: 9px;
}

/* ========== CONTACT PAGE ========== */
.contact-information, .business-hours, .map-embed {
  background: #fafbfc;
  padding: 18px 18px 9px 18px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  box-shadow: 0 1px 5px rgba(34,66,116,0.035);
}
.map-embed img { height: 20px; width: 20px; margin-right: 8px; vertical-align: middle; }
.business-hours ul, .business-hours li {
  font-size: 1rem;
  color: #415169;
  margin-bottom: 8px;
}
.contact-information strong {
  color: var(--primary-color);
}

/* ========== POLICY SECTIONS ========== */
.policy .text-section {
  margin-bottom: 20px;
}
.policy .text-section ul {
  padding-left: 22px;
  margin-bottom: 20px;
}
.policy .text-section li { list-style: disc outside; margin-bottom: 8px; }
.policy .text-section a {
  color: var(--accent-color);
  text-decoration: underline;
}
.policy .text-section a:hover { color: var(--primary-color); }
.policy .last-updated {
  color: #6e7da4;
  font-size: 0.97rem;
  margin-top: 18px;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.faq-question {
  background: #f8fafd;
  border-radius: 6px;
  padding: 18px 18px 15px 18px;
  font-size: 1.05rem;
  box-shadow: 0 1px 6px rgba(34,66,116,0.04);
  color: #31426e;
  font-family: 'Open Sans',sans-serif;
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmation .thank-you-message {
  font-size: 1.18rem;
  color: #28767a;
  margin-bottom: 19px;
  font-family: 'Montserrat',serif;
  font-weight: 600;
}
.next-steps-info {
  font-size: 1rem;
  color: #415169;
  margin-bottom: 18px;
}

/* ========== UTILITY CLASSES ========== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }

@media (max-width: 768px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .section { padding: 25px 7px; margin-bottom: 36px; }
  .card,
  .product-categories-grid li,
  .benefit-list li,
  .feature-grid li,
  .testimonial-card,
  .case-card,
  .service-list li { padding: 17px 8px; }
  .card-container, .feature-grid, .content-grid, .testimonial-slider, .case-study-list, .company-logos, .service-list, .category-list, .product-categories-grid, .benefit-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .testimonials, .case-card, .testimonial-slider, .section, .cta, .cta-offer, .cta-products, .cta-realizacje, .cta-contact {
    border-radius: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-logo, .footer-nav, .footer-contact {
    width: 100%;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
}

/* ========== MICRO-INTERACTIONS ========== */
a, button, .button, .main-nav a, .mobile-nav a {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.16s;
}
a:active, .button:active { transform: scale(.98); }

/* ========== ACCESSIBILITY & CONTRAST ========== */
.testimonial-card, .case-card, .faq-question, .feature-grid li, .product-categories-grid li, .benefit-list li {
  color: #232f42;
  background-color: #fff;
}
.testimonial-client, .client-testimonial-short span {
  color: #678;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F8F5F1;
  color: #223642;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 -1px 10px 0 rgba(30,40,101,0.08);
  z-index: 9989;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 1rem;
  gap: 16px;
  animation: slideInUp 0.5s;
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
}
@keyframes slideInUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat',serif;
  font-weight: 600;
  background: var(--primary-color);
  color: var(--neutral-light);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-size: 1rem;
}
.cookie-btn.settings {
  background: var(--accent-color);
  color: var(--primary-color);
}
.cookie-btn.reject {
  background: #e2e7ef;
  color: var(--primary-color);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-color);
  color: var(--neutral-light);
}
.cookie-btn.settings:hover { background: #ffd08a; color: var(--primary-color); }
.cookie-btn.reject:hover { background: #e08927; color: var(--neutral-light); }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 7px;
  }
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }
}

/* ===== Cookie Preferences Modal ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33, 41, 59, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  animation: fadeIn .25s;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 7px 46px 0 rgba(34,66,116,0.19);
  padding: 34px 34px 24px 34px;
  min-width: 330px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 22px;
  height: 22px;
}
.cookie-category label {
  font-family: 'Open Sans',sans-serif;
  font-size: 1rem;
  color: #222c3a;
}
.cookie-category.essential label {
  font-weight: bold;
  color: var(--primary-color);
}
.close-cookie-modal {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral-mid);
  cursor: pointer;
  padding: 6px;
  transition: color 0.15s;
}
.close-cookie-modal:hover { color: var(--accent-color); }

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
@media (max-width: 470px) {
  .cookie-modal {
    padding: 15px 5.5vw 12px 5.5vw;
    min-width: 0;
  }
}

/* ========== HELPER: HIDE COOKIE MODAL/BANNER BY DEFAULT ========== */
.cookie-banner.hidden, .cookie-modal-overlay.hidden {
  display: none !important;
}

/* ================================
   END OF ERGOBIURO STYLE SHEET
   ================================ */
