/* ----------------------- 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,
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 {
  font-size: 16px;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #15416C;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18897D;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* -------------------- BRAND COLOR PALETTE ----------------------------- */
:root {
  --primary: #15416C;
  --secondary: #E0E7EF;
  --accent: #18897D;
  --accent2: #106050;
  --black: #101112;
  --white: #fff;
  --gray-100: #F6F8FA;
  --gray-200: #E9EAEC;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-700: #374151;
}

/* -------------------- TYPOGRAPHY SCALE ------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--black);
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--black);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--black);
}
p, li {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  font-weight: 600;
  color: var(--black);
}

/* --------------------- LAYOUT: CONTAINERS, FLEX, SECTIONS ------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(28,36,58,0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(14,14,30,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 24px 26px 24px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.14s;
}
.card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(2,14,35,0.15);
  z-index: 2;
}
.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: flex-start;
  gap: 20px;
  background: var(--gray-100);
  border-radius: 14px;
  box-shadow: 0 1.5px 8px 0 rgba(16,30,44,0.06);
  padding: 24px 28px;
  margin-bottom: 20px;
  max-width: 480px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(7,17,45,0.13);
  transform: scale(1.017);
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--gray-400);
  font-style: italic;
  letter-spacing: .5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- NAVIGATION / HEADER ------------------------- */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 18px;
}
.logo-link img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  padding: 5px 0;
  font-size: 1.06rem;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.25s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  background: var(--black);
  color: var(--white) !important;
  border: none;
  text-decoration: none;
  transition: background .19s, color .17s, box-shadow .20s, transform .09s;
  box-shadow: 0 2.5px 13px 0 rgba(19,22,33,0.04);
  margin-left: 16px;
  cursor: pointer;
}
.cta.primary {
  background: var(--black);
  color: var(--white) !important;
}
.cta.secondary {
  background: var(--white);
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--primary);
  color: var(--white) !important;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--primary);
  color: var(--white) !important;
  border-color: var(--primary);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  border-radius: 8px;
  margin-left: 18px;
  padding: 6px 13px;
  transition: background 0.17s, color 0.17s;
  z-index: 40;
  border: 2px solid transparent;
}
.mobile-menu-toggle:focus {
  outline: none;
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 2px var(--secondary);
}
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--accent2);
}

/* ------------------ MOBILE MENU --------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: var(--white);
  width: 100vw;
  z-index: 1000;
  box-shadow: 0 8px 33px 0 rgba(20,25,30,0.12);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.61,.02,.33,1.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 24px;
  gap: 0;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin-top: 24px;
  align-self: flex-end;
  background: none;
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  transition: color 0.2s;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 6px;
}
.mobile-menu-close:focus {
  color: var(--accent);
  outline: 2px solid var(--primary);
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--black);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-300);
  transition: color .13s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--primary);
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }
  .cta {
    padding: 13px 18px;
  }
}
@media (max-width: 950px) {
  .main-nav, .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .nav-container {
    height: 64px;
    min-height: 64px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .logo-link img {
    height: 30px;
  }
}

/* -------------------- HERO / SPECIAL SECTIONS ------------------ */
.hero {
  background: linear-gradient(135deg, var(--white) 70%, var(--secondary) 100%);
  padding: 48px 0 35px 0;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding-left: 0;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.18rem;
  color: var(--gray-700);
}
.hero .cta {
  margin-top: 10px;
}

/* ------------------- FEATURES / LISTS --------------------------- */
.features .content-wrapper ul,
.features.values .content-wrapper ul,
.features.trust .content-wrapper ul,
.features.social-proof .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.features .content-wrapper ul li,
.features.values .content-wrapper ul li,
.features.trust .content-wrapper ul li,
.features.social-proof .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--gray-100);
  padding: 16px 20px;
  border-radius: 13px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 18px;
  min-width: 260px;
  box-shadow: 0 2px 9px 0 rgba(60,60,68,0.04);
  transition: box-shadow 0.15s;
}
.features .content-wrapper ul li img {
  height: 28px;
  width: 28px;
  margin-right: 6px;
}
.features .content-wrapper ul li:hover {
  box-shadow: 0 5px 19px 0 rgba(30,54,90,0.07);
}

/* ------------------ SERVICES, BLOG, PRICING LISTS ---------------- */
.services-overview .content-wrapper ul,
.services-main .content-wrapper ul,
.blog-articles .content-wrapper ul,
.faq .content-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.services-overview .content-wrapper ul li,
.services-main .content-wrapper ul li,
.blog-articles .content-wrapper ul li,
.faq .content-wrapper ul li {
  background: var(--gray-100);
  border-radius: 11px;
  box-shadow: 0 1.5px 7px 0 rgba(16,30,44,0.04);
  padding: 23px 23px 23px 23px;
  min-width: 240px;
  max-width: 420px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}
.services-overview .content-wrapper ul li:hover,
.services-main .content-wrapper ul li:hover,
.blog-articles .content-wrapper ul li:hover,
.faq .content-wrapper ul li:hover {
  box-shadow: 0 5px 18px 0 rgba(16,31,41,0.09);
  transform: scale(1.015);
}
.services-overview .content-wrapper ul li h3,
.services-main .content-wrapper ul li h3 {
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.services-overview .content-wrapper ul li .price,
.services-main .content-wrapper ul li .price {
  font-size: 1.08rem;
  color: var(--accent2);
  font-weight: 600;
  margin-left: 11px;
}

.blog-articles .content-wrapper ul li a {
  margin-top: 8px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  transition: color .15s;
}
.blog-articles .content-wrapper ul li a:hover {
  color: var(--accent);
}

.service-includes ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
}
.service-includes {
  margin-bottom: 18px;
  margin-top: 15px;
}

/* --------------- TABLES (Pricing) --------------------- */
.pricing-table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 2px 9px 0 rgba(40,44,55,0.05);
}
.pricing-table th,
.pricing-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table thead tr {
  background: var(--primary);
  color: var(--white);
}
.pricing-table tbody tr {
  border-top: 1px solid var(--gray-200);
}
.pricing-table tbody tr:nth-child(even) {
  background: var(--gray-200);
}
.pricing-table tbody tr:nth-child(odd) {
  background: var(--gray-100);
}

/* ------------- LEGAL TEXT SECTIONS -------------------- */
.legal, .legal.privacy-policy, .legal.rodo-info, .legal.cookies-policy, .legal.terms {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(12,16,35,0.04);
  padding: 40px 23px 33px 23px;
  margin-bottom: 48px;
}
.legal .text-section {
  max-width: 900px;
  margin-bottom: 20px;
}

/* ------------- FOOTER ------------------------ */
footer {
  margin-top: 70px;
  background: var(--white);
  border-top: 1.5px solid var(--gray-200);
  padding: 36px 7px 16px 7px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-logo img {
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
}
.footer-nav a {
  font-size: 1.01rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.social-media-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-media-links a img {
  height: 26px;
  width: 26px;
  transition: filter 0.18s, transform 0.17s;
  filter: grayscale(0.48) contrast(1.4);
}
.social-media-links a:hover img {
  filter: grayscale(0) contrast(1.8);
  transform: scale(1.13) rotate(-7deg);
}
.copyright {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

/* ------------- CALL TO ACTION SECTIONS ------------- */
.call-to-action {
  background: var(--primary);
  border-radius: 16px;
  color: var(--white);
  padding: 44px 28px;
  margin-bottom: 50px;
}
.call-to-action .content-wrapper {
  align-items: center;
  text-align: center;
}
.call-to-action h2 {
  color: var(--white);
  margin-bottom: 13px;
}
.call-to-action p {
  color: var(--secondary);
  font-size: 1.12rem;
}
.call-to-action .cta {
  margin-top: 12px;
  background: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--white);
}
.call-to-action .cta:hover {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--white);
}

/* ------------- THANK YOU PAGE ------------- */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you h1 {
  color: var(--primary);
  margin-bottom: 18px;
}
.thank-you p {
  font-size: 1.13rem;
}

/* ------------- CONTACT PAGE ------------- */
.contact .content-wrapper {
  align-items: flex-start;
}
.contact .text-section,
.map .text-section {
  max-width: 500px;
}
.contact ul {
  margin-bottom: 14px;
  margin-top: 10px;
}
.contact ul li {
  margin-bottom: 7px;
  font-size: 1rem;
}
.contact a.cta.primary {
  margin-top: 14px;
}

.map .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.map img {
  height: 135px;
  width: 135px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(15,20,59,0.07);
  background: var(--gray-200);
}
@media (max-width: 950px) {
  .map .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ------------- TEXT SECTIONS ------------- */
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 0;
  margin-bottom: 7px;
  color: var(--primary);
}
.text-section p, .text-section ul {
  margin-bottom: 11px;
  font-size: 1.04rem;
}
.text-section ul li {
  margin-bottom: 7px;
  font-size: 1rem;
  letter-spacing: 0;
}

/* ------------- FAQ ------------- */
.faq .content-wrapper ul li {
  min-width: 260px;
  max-width: 680px;
}
.faq h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.13rem;
}

/* ----------------- RESPONSIVE MEDIA QUERIES ---------------------- */
@media (max-width: 1140px) {
  .content-wrapper, .card-container, .footer-container, .features .content-wrapper ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  .call-to-action, .section, .legal {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-logo, .footer-nav, .social-media-links {
    margin-bottom: 7px;
  }
}
@media (max-width: 870px) {
  /* For all content grids and flexboxes to stack */
  .content-grid, .services-overview .content-wrapper ul, .services-main .content-wrapper ul {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .map .content-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .blog-articles .content-wrapper ul, .faq .content-wrapper ul, .features .content-wrapper ul {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
@media (max-width: 720px) {
  .section, .legal {
    padding: 29px 4px;
  }
  .hero {
    padding: 30px 0 20px 0;
  }
  h1, .h1 {
    font-size: 1.65rem;
  }
  h2, .h2 {
    font-size: 1.3rem;
  }
  h3, .h3 {
    font-size: 1.06rem;
  }
}
@media (max-width: 560px) {
  .hero .content-wrapper h1 {
    font-size: 1.17rem;
  }
  .features .content-wrapper ul li, .features.values .content-wrapper ul li {
    min-width: 98px;
    font-size: .98rem;
    padding: 13px 10px;
  }
  .cta, .call-to-action .cta {
    padding: 10px 14px;
    font-size: 0.98rem;
  }
  .call-to-action, .section, .legal {
    padding: 16px 0;
    border-radius: 8px;
  }
  .testimonials .content-wrapper {
    gap: 11px;
  }
}

/* ------------ MICRO-INTERACTIONS: BUTTON PRESS, FOCUS ----------- */
.cta:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cta:active {
  transform: scale(0.985);
}
a:focus, button:focus {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

/* ------------ COOKIE CONSENT BANNER + MODAL ---------------------- */
.cookie-banner {
  position: fixed;
  z-index: 2021;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 23px 30px 17px 30px;
  box-shadow: 0 -4px 28px 0 rgba(21,30,64,0.22);
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.33s, transform 0.33s;
  font-size: 1.03rem;
  gap: 25px;
  pointer-events: none;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transition: background 0.12s, color 0.15s, box-shadow 0.14s;
  border: none;
  cursor: pointer;
}
.cookie-banner .btn-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
}
.cookie-banner .btn-accept:hover {
  background: var(--primary);
}
.cookie-banner .btn-reject {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}
.cookie-banner .btn-reject:hover {
  color: var(--accent2);
  border-color: var(--primary);
}
.cookie-banner .btn-settings {
  background: var(--gray-200);
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}
.cookie-banner .btn-settings:hover {
  border-color: var(--accent2);
  color: var(--primary);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.97rem;
    padding: 15px 12px 9px 12px;
    border-radius: 14px 14px 0 0;
    gap: 13px;
  }
  .cookie-banner .cookie-buttons {
    gap: 7px;
    flex-wrap: wrap;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 9998;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,25,38,0.79);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 19px;
  box-shadow: 0 6px 38px 0 rgba(5,10,49,0.14);
  padding: 40px 26px 34px 26px;
  min-width: 300px;
  max-width: 450px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: var(--black);
  font-size: 1rem;
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-modal-content .cookie-categories {
  margin: 12px 0 19px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal-content .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-modal-content .category input[type=checkbox] {
  width: 1.1em;
  height: 1.1em;
  accent-color: var(--accent);
  margin-right: 4px;
}
.cookie-modal-content .category.essential input[type=checkbox] {
  accent-color: var(--gray-400);
}
.cookie-modal-content .category .category-info {
  flex: 1 1 auto;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  font-size: 1.4rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal-content .cookie-modal-close:hover,
.cookie-modal-content .cookie-modal-close:focus {
  color: var(--accent2);
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-content button {
  border-radius: 8px;
  border: none;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background 0.12s, color 0.15s;
}
.cookie-modal-content button.secondary {
  background: var(--gray-200);
  color: var(--primary);
}
.cookie-modal-content button.secondary:hover {
  background: var(--accent);
  color: var(--white);
}
@media (max-width: 450px) {
  .cookie-modal-content {
    min-width: 98vw;
    max-width: 98vw;
    padding: 17px 7px 14px 7px;
    font-size: 0.97rem;
  }
}

/* UTIL CLASSES */
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.pb-20 { padding-bottom: 20px; }
.rounded { border-radius: 14px; }
.shadow { box-shadow: 0 3px 18px 0 rgba(12,20,35,0.04); }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/***** Scrollbars (subtle elegant) *****/
::-webkit-scrollbar { width: 10px; background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 5px; }

/*--------------- END CSS ----------------*/
