/* ==================================================
   RESET & BASE STYLES
   ================================================== */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #FFFFFF 0%, #E7F0FB 100%);
  color: #1a2736;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #145DA0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C88B17;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */
body, .content-wrapper, .text-section, .testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #145DA0;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.subheadline {
  color: #1a2736;
  font-size: 1.125rem;
  margin-bottom: 32px;
  font-weight: 400;
}
p {
  margin-bottom: 20px;
}

/* Typographic Hierarchy */
.text-section h2 { font-size: 1.8rem; margin-bottom: 16px; }
.text-section h3 { font-size: 1.15rem; margin-bottom: 12px; }
.text-section p,
.text-section ul,
.text-section ol { font-size: 1rem; }

.price {
  color: #C88B17;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-top: 8px;
  display: block;
}

blockquote {
  font-style: italic;
  color: #324462;
  border-left: 4px solid #145DA0;
  padding-left: 18px;
  margin-bottom: 16px;
  background: #F4F8FC;
}

.testimonial-meta {
  font-size: 1rem;
  color: #1a2736;
  font-weight: 500;
  margin-top: 0;
}

/* ==================================================
   HEADER & NAVIGATION
   ================================================== */
header {
  background-color: #fff;
  box-shadow: 0 4px 18px rgba(20,93,160,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
  padding: 0 20px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  align-items: center;
}
header nav ul li {
  margin-bottom: 0;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #145DA0;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover,
header nav a:focus {
  color: #C88B17;
  border-bottom: 2px solid #C88B17;
}
.cta-btn {
  background: linear-gradient(90deg, #145DA0 80%, #F4B942 100%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 3px 16px rgba(20, 93, 160, 0.12);
  cursor: pointer;
  display: inline-block;
  margin-left: 24px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(100deg, #F4B942 60%, #145DA0 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(20,93,160,0.16);
}

@media (max-width: 900px) {
  header nav ul {
    gap: 14px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 10px 24px;
    font-size: 1rem;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #145DA0;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 6px 16px;
  z-index: 1011;
  position: relative;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #C88B17;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,56,84,0.97);
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 24px 0 14px 24px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F4B942;
}
.mobile-nav {
  margin: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,185,66,0.08);
  transition: color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B942;
}

@media (max-width: 1023px) {
  header nav ul {
    display: none;
  }
  header nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none!important;
  }
}

/* ==================================================
   MAIN CONTENT STRUCTURE & FLEXBOX LAYOUTS
   ================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(20,93,160,0.08);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 270px;
  transition: box-shadow 0.24s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px rgba(20,93,160,0.14);
  transform: translateY(-6px) 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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(20,93,160,0.10);
  margin-bottom: 20px;
  max-width: 650px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 3px 13px rgba(20,93,160,0.07);
  margin-bottom: 20px;
}

/* =============
   HERO SECTION
   ============= */
.hero-section {
  background: linear-gradient(100deg, #F4B942 0%, #145DA0 65%);
  color: #fff;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 60px;
  position: relative;
}
.hero-section h1 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(20,93,160,0.21);
}
.hero-section .cta-btn {
  background: linear-gradient(95deg, #fff 60%, #F4B942 100%);
  color: #145DA0;
  border: none;
  margin-left: 0;
  margin-top: 18px;
  box-shadow: 0 4px 20px rgba(245, 186, 65, 0.15);
}
.hero-section .cta-btn:hover, .hero-section .cta-btn:focus {
  background: linear-gradient(90deg,#F4B942 50%, #fff 100%);
  color: #145DA0;
}
@media (max-width: 900px) {
  .hero-section {
    min-height: 260px;
    padding: 32px 0 44px;
  }
  .hero-section h1 {
    font-size: 2.0rem;
  }
  .hero-section .ctab-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

/* =============
   FEATURE LISTS
   ============= */
.features-section ul, .features-section ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.features-section ul li, .features-section ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F4F8FC;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 2px 7px rgba(20,93,160,0.06);
  font-size: 1.05rem;
}
.features-section ol li::before {
  content: counter(li) '.';
  font-weight: bold;
  color: #145DA0;
  margin-right: 7px;
}
.features-section ol {
  counter-reset: li;
}
.features-section ol li {
  counter-increment: li;
}
.features-section ul li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* =============
   SERVICE CARDS (INDEX PAGE)
   ============= */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 13px rgba(20,93,160,0.08);
  flex: 1 1 270px;
  min-width: 270px;
  max-width: 320px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .21s , transform .16s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px rgba(244,185,66, 0.13), 0 2px 10px rgba(20,93,160,0.07);
  transform: translateY(-4px) scale(1.01);
}
.service-card h3 {
  color: #145DA0;
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.service-card .price {
  color: #C88B17;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .service-card {
    max-width: 100%;
  }
}

/* =============
   SERVICE LISTS
   ============= */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin-bottom: 28px;
}
.service-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(20,93,160,0.07);
  padding: 28px 18px 18px 18px;
  min-width: 220px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list h3 {
  color: #145DA0;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.service-list .price {
  color: #C88B17;
  font-size: 1rem;
  margin-top: 7px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .service-list li {
    min-width: unset;
    width: 100%;
  }
}

/* =============
   TESTIMONIALS
   ============= */
.testimonials-section {
  background: linear-gradient(90deg, #F4F8FC 60%, #E7F0FB 100%);
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonials-section h2 {
  color: #145DA0;
}
.testimonial-card {
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(20,93,160,0.10);
  border-radius: 16px;
  padding: 24px 26px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 620px;
  width: 100%;
  color: #1a2736;
  font-size: 1.08rem;
}
.testimonial-card blockquote {
  color: #324462;
  background: #F7FAFC;
  border-left: 4px solid #145DA0;
  margin-bottom: 6px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #145DA0;
  margin-top: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =============
   CTA SECTION
   ============= */
.cta-section {
  background: linear-gradient(95deg, #F4B942 0%, #145DA0 80%);
  color: #fff;
  text-align: left;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(20,93,160,0.07);
  margin-bottom: 40px;
  padding: 34px 0;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .cta-btn {
  background: linear-gradient(90deg,#fff 70%, #F4B942 100%);
  color: #145DA0;
  margin-top: 18px;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: linear-gradient(90deg,#F4B942 60%, #fff 100%);
  color: #145DA0;
}

/* =============
   CONTACT SECTION
   ============= */
.contact-section .text-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 13px rgba(20,93,160,0.07);
  padding: 26px 22px;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-address {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #145DA0;
  font-weight: 600;
}
@media (max-width: 700px) {
  .contact-section .text-section, .card, .service-card, .feature-item {
    padding: 14px 12px;
  }
}

/* =============
   FAQ SECTION
   ============= */
.faq-section {
  background: #F4F8FC;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(20,93,160,0.06);
  padding-top: 34px;
  padding-bottom: 34px;
  margin-bottom: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
}
.faq-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(20,93,160,0.06);
  padding: 16px 18px;
}
.faq-list strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #145DA0;
  display: block;
}

/* =============
   LEGAL SECTIONS
   ============= */
.legal-section {
  background: #F4F8FC;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(20,93,160,0.06);
  padding: 36px 0 36px 0;
  margin-bottom: 42px;
}
.legal-section h1 {
  color: #145DA0;
}
.text-section {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(20,93,160,0.05);
  padding: 20px 16px 2px 18px;
}

/* =============
   FOOTER
   ============= */
footer {
  background: linear-gradient(100deg, #145DA0 90%, #F4B942 100%);
  color: #fff;
  padding: 36px 0 0 0;
  margin-top: 80px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 4px;
}
.footer-columns > div {
  min-width: 200px;
  flex: 1 1 220px;
}
.footer-columns nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer a {
  color: #fff;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.15s;
}
footer a:hover,footer a:focus {
  color: #F4B942;
  opacity:1;
}
footer img {
  margin-bottom: 10px;
  width: 52px;
  height: auto;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.social-links a {
  display:inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(20,93,160,0.05);
  transition: background 0.15s, box-shadow 0.18s;
}
.social-links a:hover { background: #F4B942; box-shadow: 0 6px 24px rgba(244,185,66,0.12); }
.social-links img {
  width: 22px;
  height: 22px;
  margin: 0;
}
.footer-note {
  margin: 0;
  text-align: center;
  color: #e8eaf0;
  font-size: 0.98rem;
  padding: 16px 0 20px 0;
}

@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/* ==================================================
   SPACING, GAPS, AND FLEXBOX RESPONSIVENESS
   ================================================== */
.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; }

/* Minimum margin between cards & sections */
.card, .service-card, .feature-item, .testimonial-card, .section, .faq-section {
  margin-bottom: 20px;
}

/* ===============================================
   RESPONSIVE - MOBILE FIRST ADJUSTMENTS
   =============================================== */
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section { padding: 30px 0px; margin-bottom: 40px; }
  .content-wrapper { gap: 18px; }
  .footer-columns { gap: 12px; }
  .footer-columns > div, .footer-columns nav { min-width: 149px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero-section { padding: 24px 0 34px; min-height: 170px; }
  .hero-section h1 { font-size: 1.45rem; }
  .card-container, .service-cards, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card, .service-card, .feature-item, .testimonial-card, .contact-section .text-section {
    min-width: unset;
    padding: 13px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
  .cta-section {
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .footer-columns { flex-direction: column; gap: 8px; }
  .hero-section { padding: 18px 0 24px; }
  .faq-section, .legal-section, .features-section, .services-section {(padding-left: 0px; padding-right: 0px;)}
}

/* ====================================================
   BUTTONS, HOVER EFFECTS, MICRO-INTERACTIONS
   ==================================================== */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow 0.17s, color 0.18s, background 0.21s,transform 0.15s;
  outline: none;
}
button:focus,
.cta-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #F4B94233;
}
.cta-btn:active {
  transform: scale(0.98);
}

/* ===============================================
   COOKIE CONSENT BANNER
   =============================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3200;
  background: #1A2736;
  color: #fff;
  box-shadow: 0 -4px 20px rgba(20,93,160,.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  font-size: 1rem;
  animation: slide-in-banner 0.7s cubic-bezier(.64,.1,.23,.99);
}
@keyframes slide-in-banner {
  from { transform: translateY(90px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 1;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 28px;
  padding: 8px 20px;
  background: #145DA0;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: #F4B942;
  color: #145DA0;
}
.cookie-btn.reject {
  background: #C88B17;
}
.cookie-btn.settings {
  background: #FFFFFF;
  color: #145DA0;
  border: 1px solid #C88B17;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #145DA0;
  color: #F4B942;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #145DA0;
  color: #F4B942;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #C88B17;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F4B942;
  color: #145DA0;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner__actions { gap: 8px; }
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3400;
  background: rgba(36,56,84,0.86);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.25s cubic-bezier(.77,0,.18,1);
}
@keyframes fade-in-modal {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal__box {
  background: #fff;
  border-radius: 18px;
  padding: 42px 28px 30px 28px;
  color: #145DA0;
  max-width: 430px;
  width: 95%;
  box-shadow: 0 6px 32px rgba(20,93,160,.17);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  font-size: 1.1rem;
}
.cookie-modal__close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: #145DA0;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal__close:hover,.cookie-modal__close:focus {
  color: #C88B17;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal__category label {
  font-weight: 600;
  color: #145DA0;
  flex: 1;
}
.cookie-switch {
  appearance: none;
  height: 24px;
  width: 46px;
  background: #E7F0FB;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
  margin-right: 4px;
}
.cookie-switch:checked {
  background: #F4B942;
}
.cookie-switch::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.15s;
  box-shadow: 0 1px 3px rgba(36,56,84,0.13);
}
.cookie-switch:checked::before {
  left: 24px;
}
.cookie-modal__category .cat-desc {
  font-size: 0.95rem;
  color:#35496f;
  font-weight: 400;
  opacity: 0.74;
}
.cookie-modal__category .always-on {
  color: #1A2736;
  background: #E7F0FB;
  border-radius: 9px;
  font-size: 0.93rem;
  padding: 3px 9px;
  font-weight: 500;
  margin-left: 7px;
}
.cookie-modal__box .cookie-btn {
  align-self: flex-end;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .cookie-modal__box {
    padding: 21px 8px 18px 8px;
    max-width: 98vw;
  }
}

/* ===============================================
   OVERRIDES: Guarantee no grid or columns used
   =============================================== */
/* The layout is 100% flexbox! No grid or columns properties should ever be used. */
