/* =========================================================
   RESET & NORMALIZE (Mobile-first, wide browser support)
========================================================= */
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%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background-color: #F5F6FA;
  color: #24292F;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
a { color: #174B68; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #3AAC9E; text-decoration: underline; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ================= Core Brand Colors ==================== */
:root {
  --primary: #174B68;
  --secondary: #3AAC9E;
  --accent: #F5F6FA;
  --text-dark: #24292F;
  --text-muted: #6e7278;
  --surface: #fff;
  --border: #e6e7ed;
  --shadow: rgba(23,75,104,0.07);
  --elegant-seriff: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
  --elegant-display: 'Montserrat', 'Merriweather', Georgia, serif;
}

/* =============== Typography Hierarchy ================== */
h1, .h1 {
  font-family: var(--elegant-display);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.22;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: var(--elegant-display);
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.26;
  margin-bottom: 20px;
  color: var(--primary);
}
h3, .h3 {
  font-family: var(--elegant-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--elegant-seriff);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--primary);
}
p, ul, ol {
  font-family: var(--elegant-seriff);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
strong, b { font-weight: 600; }

.subheadline {
  font-family: var(--elegant-display);
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 24px;
}

/* =================  Generic Containers  ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

/* ==== Elegant Classic Spacing and Flex Patterns ========= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(23,75,104,0.13);
  transform: translateY(-3px) scale(1.012);
}
.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;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.features-grid > div {
  flex: 1 1 200px;
  min-width: 240px;
  background: var(--surface);
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  padding: 24px 18px 16px 18px;
  transition: box-shadow 0.18s, transform 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 32px rgba(23,75,104,0.14);
  transform: translateY(-2px) scale(1.013);
}

/* ================= HERO STYLES ========================= */
.hero {
  background: linear-gradient(120deg, #F5F6FA 70%, #e8eff2 100%);
  padding: 56px 0 48px 0;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 span {
  color: var(--secondary);
  font-weight: 700;
}
/* =================== BUTTONS ============================ */
.cta-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--elegant-display);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 38px;
  border-radius: 32px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px var(--shadow);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.16s;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(58,172,158,0.17);
  text-decoration: none;
}
.see-more-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 32px;
  border: 1px solid var(--primary);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.see-more-link:hover, .see-more-link:focus {
  background: var(--primary);
  color: #fff;
}
.subscribe-cta a {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: var(--elegant-display);
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 32px;
  margin-left: 8px;
  border: none;
  transition: background 0.17s, color 0.17s;
}
.subscribe-cta a:hover, .subscribe-cta a:focus {
  background: var(--primary);
}

/* ================= CARDS =============================== */
.service-cards, .blog-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.service-cards > div,
.blog-post-card {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 18px 14px 18px;
  min-width: 210px;
  flex: 1 1 290px;
  margin-bottom: 0;
  transition: box-shadow 0.17s, transform 0.13s;
}
.service-cards > div:hover,
.blog-post-card:hover {
  box-shadow: 0 8px 32px rgba(23,75,104,0.15);
  transform: translateY(-2px) scale(1.014);
}

/* =============== TESTIMONIALS / REVIEWS =============== */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  flex: 1 1 270px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--secondary);
  color: var(--text-dark);
  position: relative;
  box-shadow: 0 2px 16px var(--shadow);
  margin-bottom: 0;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(23,75,104,0.13);
}
.testimonial-user {
  font-family: var(--elegant-display);
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ================ FOOTER & CONTACT ===================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 24px 0;
  margin-top: 64px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--elegant-display);
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.15s, text-decoration 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus { opacity: 1; text-decoration: underline; }
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  opacity: 0.96;
}
.footer-contact-text img { width: 18px; margin-right: 6px; position: relative; top: 3px; }

.copyright {
  text-align: center;
  opacity: 0.56;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* =============== NAVIGATION BAR ======================= */
header {
  background: var(--surface);
  box-shadow: 0 1px 10px var(--shadow);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: var(--elegant-display);
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  padding: 3px 12px;
  border-radius: 22px;
  transition: background 0.14s, color 0.17s;
  opacity: 0.95;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #fff;
  opacity: 1;
}
.logo-link img {
  width: 146px;
  height: auto;
  display: block;
}

/* =============== MOBILE MENU ========================== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 10px var(--shadow);
  margin-left: 14px;
  transition: background 0.16s, color 0.16s;
  z-index: 202;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23,75,104,0.97);
  color: #fff;
  z-index: 205;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.7,0.1,0.4,1.3);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 28px;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  color: #fff;
  background: var(--secondary);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  z-index: 207;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin: 70px 28px 0 36px;
}
.mobile-nav a {
  font-family: var(--elegant-display);
  font-weight: 600;
  font-size: 1.34rem;
  color: #fff;
  letter-spacing: 0.04em;
  background: none;
  padding: 6px 0;
  margin-bottom: 2px;
  border-radius: 0;
  display: block;
  width: 100%;
  opacity: 1;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: none;
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .container { max-width: 960px; }
  .content-wrapper { max-width: 780px; }
}
@media (max-width: 900px) {
  .container { max-width: 730px; }
  .content-wrapper { max-width: 600px; }
}
@media (max-width: 900px) {
  .features-grid > div, .card, .service-cards > div, .testimonial-card, .blog-post-card {
    min-width: 180px;
    flex-basis: 45%;
  }
}
@media (max-width: 768px) {
  /* Make nav responsive */
  nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .hero { padding: 34px 0 28px 0; }
  .hero h1 { font-size: 2rem; }
  .footer-nav, .contact-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-contact-text { font-size: 0.98rem; }

  .section { padding: 24px 10px; margin-bottom: 38px; }
  .content-grid, .card-container, .features-grid, .service-cards, .testimonials-list, .blog-listing {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div, .service-cards > div, .testimonial-card, .blog-post-card {
    min-width: 0;
    flex-basis: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .cta-primary, .subscribe-cta a {
    width: 100%;
    text-align: center;
  }
  .office-location-map img {
    margin-bottom: 12px;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  nav { display: flex !important; }
}

/* ============= Text/Content Section ==================== */
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.values-list, .company-culture ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
.values-list li, .company-culture li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-family: var(--elegant-seriff);
}
.values-list li::before, .company-culture li::before {
  content: '\2022';
  color: var(--secondary);
  position: absolute;
  left: 3px;
  font-size: 19px;
  line-height: 1.1;
}

/* ============ Search/Filters, Katalog Uslug ============ */
.text-section > div {
  margin-bottom: 8px;
}
.text-section label {
  font-family: var(--elegant-display);
  font-weight: 500;
  color: var(--primary);
  margin-right: 5px;
}
#search, select {
  padding: 8px 16px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  margin-top: 5px;
  transition: border-color 0.18s;
}
#search:focus, select:focus {
  border-color: var(--secondary);
}
.service-categories-list, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.service-categories-list li a, .categories-filter a {
  font-family: var(--elegant-display);
  font-size: 1.05rem;
  color: var(--primary);
  background: var(--accent);
  padding: 7px 23px;
  border-radius: 30px;
  margin-bottom: 6px;
  font-weight: 500;
  border: 1px solid var(--primary);
  transition: background 0.14s, color 0.13s;
}
.service-categories-list li a:hover, .categories-filter a:hover {
  color: #fff;
  background: var(--primary);
}
.service-categories li {
  background: var(--accent);
  border-radius: 22px;
  padding: 7px 20px;
  color: var(--primary);
  font-family: var(--elegant-seriff);
  font-size: 1rem;
  border: 1px solid var(--primary);
  margin-bottom: 5px;
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  font-size: 1rem;
}
.categories-filter span { color: var(--primary); font-weight: 500; }

/* ================ CTA Boxes ========================== */
.cta-box {
  background: var(--secondary);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 22px rgba(58,172,158,0.09);
  text-align: center;
  padding: 32px 8vw 36px 8vw;
  margin-bottom: 8px;
  margin-top: 20px;
}
.cta-box h2, .cta-box p { color: #fff; }

/* ============== Blog Cards & FAQ ================ */
.blog-post-card {
  font-family: var(--elegant-seriff);
}
.blog-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 18px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.faq-accordion > div {
  background: var(--surface);
  border-radius: 9px;
  box-shadow: 0 1px 6px var(--shadow);
  border: 1px solid var(--border);
  padding: 16px 16px 10px 16px;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.faq-accordion > div:hover {
  box-shadow: 0 4px 16px rgba(23,75,104,0.14);
  border-color: var(--secondary);
}

/* ============== Contact & Thank You ================ */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info ul {
  margin-top: 8px;
  margin-bottom: 0;
}
.contact-info li {
  margin-bottom: 10px;
  font-family: var(--elegant-seriff);
  color: var(--text-dark);
  font-size: 1.04rem;
  display: flex;
  align-items: center;
}
.contact-info li img { margin-right: 9px; width: 20px; }
.office-location-map {
  display: flex;
  align-items: center;
  margin-top: 14px;
}
.office-location-map img { width: 30px; margin-right: 8px; }
.confirmation-message { background: var(--accent); border-radius: 12px; padding: 22px 18px; margin-bottom: 20px; border: 1px solid var(--secondary); }
.next-steps-info ul { margin-top: 10px; }

/* ============== Legal / Policy Pages ================ */
.legal-text {
  background: var(--surface);
  border-radius: 10px;
  padding: 32px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 20px;
}
.legal-text h2 {
  font-size: 1.34rem;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-text ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-text li {
  list-style: disc inside;
  color: var(--text-muted);
}

/* ============ TABLES ============= */
table {
  width:100%;
  border-spacing:0;
  border-collapse:collapse;
  margin-bottom:20px;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 1px 6px var(--shadow);
}
th, td {
  padding:10px 18px;
  border-bottom:1px solid var(--border);
  text-align:left;
  font-size: 1rem;
}
th {
  background: var(--accent);
  color: var(--primary);
  font-weight:600;
}
tr:last-child td { border-bottom: none; }

/* ================= Animations =========================== */
.cta-primary, .card, .features-grid > div, .testimonial-card, .service-cards > div, .blog-post-card, .see-more-link, .subscribe-cta a {
  transition: box-shadow 0.2s, transform 0.14s, background 0.16s, color 0.16s, border-color 0.16s;
}
.mobile-menu, .cookie-banner, .cookie-preferences-modal {
  transition: transform 0.38s cubic-bezier(0.7,0.1,0.4,1.3), opacity 0.28s;
}

/* =================================================================
   COOKIE CONSENT BANNER & MODAL (custom classnames, mobile-friendly)
================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 -6px 36px rgba(23,75,104,0.11);
  border-top: 2px solid var(--secondary);
  padding: 22px 18px 18px 18px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner strong { color: var(--primary); }
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 26px;
  font-family: var(--elegant-display);
  font-size: 1rem;
  border-radius: 30px;
  margin-top: 2px;
  font-weight: 500;
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: #fff;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-reject {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-banner .cookie-reject:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-banner .cookie-settings:hover {
  background: #fff;
  color: var(--primary);
}

/* Cookie preferences modal (centered) */
.cookie-preferences-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,75,104,0.68);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* visible by default for CSS; hide with JS class */
  pointer-events: all;
}
.cookie-preferences-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
}
.cookie-modal-content {
  background: #fff;
  color: var(--text-dark);
  border-radius: 14px;
  box-shadow: 0 6px 40px rgba(23,75,104,0.22);
  padding: 42px 32px 26px 32px;
  max-width: 430px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-title {
  font-family: var(--elegant-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.cookie-modal-category {
  font-family: var(--elegant-display);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.06rem;
  margin-bottom: 3px;
  margin-top: 6px;
}
.cookie-modal-toggle {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
  vertical-align: middle;
  margin-right: 7px;
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  background: var(--secondary);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: var(--primary);
}
.cookie-modal-btns {
  display: flex; gap: 14px; margin-top: 16px;
}
.cookie-modal-btns button {
  font-family: var(--elegant-display);
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 30px;
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: #fff;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-btns .cookie-cancel {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-modal-btns .cookie-cancel:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 550px){
  .cookie-modal-content {
    padding: 22px 7vw 18px 7vw;
    max-width: 99vw;
  }
}

/* ============== Utility: Hide visually only ============= */
.sr-only {
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* ============== Misc ====================== */
::-webkit-scrollbar { width: 7px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 8px; }

/* ============== End of CSS =================== */
