/* ====== 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 {
  line-height: 1.6;
  background: #F5F3F0;
  color: #1A252F;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color.2s;
}
a:hover, a:focus {
  color: #38A3A5;
}

/* ====== BRAND FONTS ====== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A252F;
  font-weight: 700;
}
h1 {
  font-size: 2.8rem; /* 45px approx */
  line-height: 1.12;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
}
h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong { font-weight: 700; color: #22577A;}

/* ====== GRADIENT_MODERN BRAND COLORS ====== */
:root {
  --primary: #22577A;
  --secondary: #38A3A5;
  --accent: #F5F3F0;
  --gradient1: #38A3A5;
  --gradient2: #22577A;
  --section-bg: #FAFAFB;
  --section-alt-bg: #E8F6EF;
  --text-dark: #1A252F;
  --text-light: #f5f5fa;
  --shadow: 0 4px 28px 0 rgba(34,87,122,0.09),0 1.5px 4px rgba(34,87,122,0.13);
  --radius: 18px;
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ====== STRUCTURE & CONTAINERS ====== */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-section {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ====== GLOBAL SECTION SPACING (MANDATORY) ====== */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: linear-gradient(to right, var(--gradient1) 0%, var(--gradient2) 100%);
  color: var(--text-light);
  box-shadow: var(--shadow);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  gap: 24px;
}
header img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color .22s;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: width .3s;
  margin-top: 2.5px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}

.cta.primary {
  background: linear-gradient(90deg, var(--gradient1) 0%, var(--gradient2) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08em;
  box-shadow: var(--shadow);
  padding: 13px 36px;
  cursor: pointer;
  margin-left: 16px;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.cta.primary:hover, .cta.primary:focus {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.028);
  box-shadow: 0 6px 36px 0 rgba(34,87,122,0.17);
}

.cta.secondary {
  background: #fff;
  color: var(--secondary);
  border: 2.5px solid var(--secondary);
  border-radius: var(--radius);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  padding: 12px 32px;
  margin-top: 18px;
  margin-bottom: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* ====== MOBILE NAVIGATION ====== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 18px;
  z-index: 120;
  padding: 0 4px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(119deg, var(--gradient2) 40%, var(--gradient1) 100%);
  color: #fff;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.55,.06,.56,.94);
  opacity: 0.97;
  box-shadow: 0 14px 30px rgba(34,87,122,0.33);
  padding-top: 22px;
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform .45s cubic-bezier(.51,-0.09,.35,1.27);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 6px 22px 6px 0px;
  cursor: pointer;
  letter-spacing: 3px;
  padding: 4px 12px;
  z-index: 20;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(56,163,165,0.13);}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 16px;
  gap: 20px;
  padding-left: 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18em;
  font-weight: 600;
}
.mobile-nav a {
  color: #fff;
  margin-bottom: 8px;
  display: block;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  font-family: inherit;
  transition: background 0.19s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(245, 255, 255, 0.13);
  color: #FFD165;
}

/* Hide main-nav, show burger on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ====== HERO SECTION ====== */
section:first-of-type {
  background: linear-gradient(111deg, var(--gradient1), var(--gradient2) 77%);
  color: #fff;
  box-shadow: 0px 2px 30px 0px rgba(34,87,122,0.07);
  padding-bottom: 10px;
}
section:first-of-type h1, section:first-of-type p {
  color: #100b0b;
}
section:first-of-type .cta.primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 28px 0 rgba(34,87,122,0.09),0 1.5px 4px rgba(34,87,122,0.13);
}
section:first-of-type .cta.primary:hover,section:first-of-type .cta.primary:focus {
  background: var(--accent);
  color: var(--secondary);
  filter: none;
}

/* ====== FEATURE GRID ====== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px; /* mandatory space between */
  min-width: 220px;
  max-width: 280px;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.027);
  box-shadow: 0 14px 38px 0 rgba(56,163,165,0.07);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

/* ====== SERVICE CARDS, CARDS, ARTICLES ====== */
.service-cards, .articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-cards > div, .article-preview {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 230px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-preview {
  min-width: 220px;
}
.service-cards > div:hover, .article-preview:hover {
  box-shadow: 0 10px 38px 0 rgba(56,163,165,0.08);
  transform: translateY(-3px) scale(1.012);
}

/* ====== TESTIMONIALS SLIDER & CARDS ====== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 5px 0;
}
.testimonial-card {
  background: #F5F7FB;
  color: #1A252F;
  border-radius: var(--radius);
  box-shadow: 0 4px 30px 0 rgba(34,87,122,0.12);
  padding: 30px 24px 22px 24px;
  flex: 1 1 280px;
  margin-bottom: 20px; /* mand. */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 220px;
  max-width: 370px;
  position: relative;
  transition: var(--transition);
  border-left: 8px solid var(--secondary);
  font-size: 1.06em;
}
.testimonial-card p {
  font-style: italic;
  color: #1A252F;
  margin-bottom: 12px;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-left: 1.2px;
}
.testimonial-card:hover {
  background: #fff;
  box-shadow: 0 10px 36px rgba(34,87,122,0.14);
}

/* ====== CARD CONTAINERS, CONTENT GRIDS (MANDATORY CLASSES) ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
}
.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;
}

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

/* ====== STEPS, TEAM GRID, FAQ ====== */
.step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.step-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px 18px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  font-size: 1.06em;
  transition: var(--transition);
}
.step-list img {
  width: 36px; min-width: 36px; height: 36px;}
.step-list li:hover {
  box-shadow: 0 6px 24px rgba(34,87,122,0.10);
  transform: translateY(-2px);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.team-grid > div {
  flex: 1 1 250px;
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.02em;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  flex: 1 1 320px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 20px 18px;
  margin-bottom: 20px;
}
.faq-list h3 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.14rem;
}

/* ====== ACCORDION (services) ====== */
.service-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-accordion > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px 18px 22px;
  flex: 1 1 330px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-accordion > div h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.16rem;
}
.service-accordion > div h3 span {
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.02rem;
  margin-left: 14px;
}
.service-accordion > div:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 28px rgba(56,163,165,0.08);
}

/* ====== CONTACT BLOCKS ====== */
.contact-info-brief, .content-wrapper > p strong {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
  font-size: 1.04em;
  word-break: break-word;
}

/* ====== CATEGORIES/FILTER ====== */
.categories-filter {
  font-size: 1rem;
  color: var(--primary);
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.categories-filter span {
  background: #fff;
  color: var(--secondary);
  border-radius: 9px;
  padding: 3px 13px 4px 13px;
  margin: 0 4px;
  font-size: 0.98em;
  font-weight: 500;
  box-shadow: 0 1.5px 5px rgba(34,87,122,0.07);
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(90deg, var(--gradient2), var(--gradient1) 85%);
  color: #fff;
  padding: 44px 0 0 0;
  min-height: 160px;
  box-shadow: 0 -2.5px 22px 0 rgba(56,163,165,0.05);
  font-size: 0.99em;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  background-color: #6c828f;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-info a img {
  height: 39px;
}
.footer-info > div {
  min-width: 245px;
}
.footer-nav, .footer-second-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  margin-top: 5px;
}
.footer-nav a, .footer-second-nav a {
  color: #fff;
  font-size: 1.02em;
  opacity: 0.91;
}
.footer-nav a:hover, .footer-second-nav a:hover {
  color: #FFD165;
  opacity: 1.0;
  text-decoration: underline;
}

/* ====== LEGAL TEXT BLOCKS ====== */
.legal-text {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 22px 24px;
  color: #1A252F;
  margin: 18px 0 12px 0;
  font-size: 1.01em;
  word-break: break-word;
}
.legal-text h2 { font-size: 1.14rem; margin-bottom: 8px; }
.legal-text ul { margin-left: 16px; margin-bottom: 12px; }
.legal-text li {margin-left: 16px; margin-bottom: 6px;}

/* ====== SPACING FOR COMMON CLASSES (MANDATORY) ====== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ====== BUTTONS & FORM ELEMENTS ====== */
button, .cta {
  cursor: pointer;
  outline: none;
}
button:focus, .cta:focus {
  box-shadow: 0 0 0 2.5px rgba(56,163,165,0.23);
}

/* ====== ANIMATIONS ====== */
.cta, .card, .card-container > *, .service-cards > *, .feature-grid > *, .testimonial-card, .mobile-menu, .mobile-menu-close, .main-nav a {
  transition: var(--transition);
}

/* ====== MEDIA QUERIES, RESPONSIVE FLEX LAYOUTS ====== */
@media (max-width: 1020px) {
  .container {
    padding: 0 16px;
  }
  .footer-info {
    gap: 20px;
    flex-wrap: wrap;
  }
  .feature-grid, .service-cards, .card-container, .team-grid, .content-grid, .faq-list, .service-accordion, .articles, .testimonial-slider {
    gap: 14px;
  }
  .main-nav {display: none;}
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
  }
  .feature-grid, .service-cards, .card-container, .team-grid, .content-grid, .faq-list, .service-accordion, .articles, .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-info {
    flex-direction: column;
    gap: 26px;
  }
  .footer-nav, .footer-second-nav {gap: 12px;}
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.34rem;}
  .container {padding: 0 7px;}
  header .container {flex-direction: row;gap: 4px;}
  .content-wrapper, .text-section {padding: 0;}
  
  .feature-grid>div, .service-cards>div, .article-preview, .team-grid>div, .faq-list>div, .testimonial-card, .service-accordion>div, .step-list li {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 18px 11px 16px 13px;
  }
  .testimonial-card {
    align-items: flex-start;
    gap: 13px;
    padding: 15px 10px 12px 10px;
  }
  .step-list img, .feature-grid img {width: 32px; min-width: 32px;}
  .testimonial-slider, .feature-grid, .service-cards, .team-grid, .content-grid, .faq-list, .service-accordion, .articles, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {flex-direction: column; align-items: flex-start;gap: 13px;}
  .main-nav {display: none;}
  .mobile-menu-toggle {display: inline-block;}
}

@media (max-width: 520px) {
  h1 {font-size: 1.25rem;}
  h2 {font-size: 1.01rem;}
  header .container {padding: 13px 7px;}
  .service-cards>div, .feature-grid>div, .article-preview, .card, .testimonial-card, .team-grid>div, .faq-list>div, .service-accordion>div, .step-list li {
    padding: 13px 5px!important;
  }
  .footer-info {flex-direction: column; gap: 14px;}
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3500;
  background: #fff;
  color: #1A252F;
  box-shadow: 0px -6px 18px 0 rgba(34,87,122,0.13);
  padding: 18px 32px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-size: 1em;
  gap: 18px;
  animation: slideUpCookie .65s cubic-bezier(.55,.06,.56,.94);
}
@keyframes slideUpCookie {
  from { transform: translateY(90px); opacity:0;} to {transform: translateY(0); opacity:1;}
}
.cookie-banner__text {
  flex: 1 1 0%;
  font-size: 1em;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-banner__btn {
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border-radius: 7px;
  border: none;
  box-shadow: 0 1.5px 6px rgba(56,163,165,0.11);
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  margin-left: 0;
  transition: var(--transition);
  cursor: pointer;
}
.cookie-banner__btn.accept {
  background: var(--primary);
}
.cookie-banner__btn.reject {
  background: #ccc;
  color: #333;
}
.cookie-banner__btn.settings {
  background: #fff;
  color: var(--secondary);
  border: 1.8px solid var(--secondary);
}
.cookie-banner__btn:hover,
.cookie-banner__btn:focus {
  filter: brightness(1.10);
  transform: translateY(-1.5px) scale(1.028);
  box-shadow: 0 3.5px 14px rgba(56,163,165,0.21);
}

@media (max-width: 680px) {
  .cookie-banner { flex-direction: column; padding: 17px 8px; gap: 10px;}
  .cookie-banner__text { margin-right: 0; margin-bottom: 8px;}
  .cookie-banner__actions {gap: 10px;}
}

/* ====== COOKIE SETTINGS MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(34,87,122, 0.30);
  display: flex; align-items: center; justify-content: center;
  animation: fadein .24s cubic-bezier(.57,0,.41,1.22);
}
@keyframes fadein { from{ opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 36px 0 rgba(34,87,122,0.11);
  padding: 38px 28px 27px 28px;
  max-width: 420px;
  min-width: 270px;
  color: #1A252F;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  animation: popup-in .41s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes popup-in { from{transform: scale(.89); opacity:.40;} to {transform: scale(1); opacity:1;} }
.cookie-modal h2 { font-size: 1.17rem; margin-bottom: 7px; color: var(--primary);}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  background: #FAFAFA;
  padding: 8px 13px;
  border-radius: 10px;
}
.cookie-modal__category label {
  font-size: 1em;
  font-weight: 500;
}
.cookie-modal__toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #eee;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal__toggle input {
  display: none;
}
.cookie-modal__slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 4px rgba(34,87,122,0.10);
  transition: left 0.2s;
}
.cookie-modal__toggle input:checked + .cookie-modal__slider {
  left: 22px;
  background: var(--secondary);
}
.cookie-modal__category--alwayson label {
  color: #6c828f;
  font-weight: 600;
}
.cookie-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.7em;
  color: #22577A;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal__close:hover {color: #38A3A5;}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 11px;
}
.cookie-modal__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  transition: var(--transition);
}
.cookie-modal__actions button.save {
  background: var(--primary);
}
.cookie-modal__actions button.cancel {
  background: #ddd;
  color: #333;
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus {
  filter: brightness(1.09);
}
@media (max-width: 520px) {
  .cookie-modal {padding: 16px 4px 12px 6px; min-width: 0;}
  .cookie-modal h2{font-size:1em;}
}

/* ====== ACCESSIBILITY ====== */
:focus {
  outline: 2.5px solid #38A3A5;
  outline-offset: 2px;
}

/* ====== MISC USABILITY ====== */
ul, ol {
  padding-left: 22px;
}
::-webkit-scrollbar {
  width: 8px;
  background: #e0eded;
}
::-webkit-scrollbar-thumb {
  background: #38A3A5;
  border-radius: 8px;
}

/* ====== PRINT FRIENDLY ====== */
@media print {
  header,.mobile-menu,.cookie-banner,.cookie-modal-overlay,footer {display: none !important;}
  section,main {padding:0 !important;}
  .container {max-width:none;}
}
