/* === 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.5;
  background: #F8FAFD;
  color: #22406D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img, svg {max-width: 100%; display: block;}
a {color: inherit; text-decoration: none; transition: color 0.2s;}
ul, ol {list-style: none;}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #22406D;
}

/* === BRAND COLORS === */
:root {
  --primary: #22406D;
  --secondary: #E1EDF8;
  --accent: #FFD166;
  --text-dark: #21314B;
  --text-light: #fff;
  --gray-light: #F8FAFD;
  --gray: #e4eaf1;
  --shadow: 0 4px 24px rgba(34,64,109,0.10);
  --shadow-heavy: 0 8px 32px rgba(34,64,109,0.22);
  --radius: 20px;
}

/* --- TYPOGRAPHY --- */
h1 { font-size: 2.6rem; margin-bottom: 24px; letter-spacing: -2px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -1px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, span, dl, dt, dd { font-size: 1rem; margin-bottom: 10px; }
strong {font-weight: 700;}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--gray-light);
  color: var(--text-dark);
}

/* Artistic headings & subtle artistic details */
h1, h2, h3 {
  position: relative;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  z-index: 1;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 56px;
  height: 6px;
  border-radius: 3px;
  background: var(--accent);
  margin-top: 8px;
  margin-left: 2px;
}

/* ==================
   LAYOUT CONTAINERS
   ==================*/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

/* ===============
   SPACING PATTERNS
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.20s cubic-bezier(.74,.07,.13,.87), box-shadow 0.18s;
  position: relative;
}
.card:hover {
  transform: translateY(-5px) scale(1.015) rotate(-1deg);
  box-shadow: var(--shadow-heavy);
}
.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: center;
  gap: 20px;
  padding: 24px 24px 18px 24px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  min-width: 0;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
     HEADER/NAV
   =============== */
header {
  background: var(--primary);
  color: var(--text-light);
  padding: 0;
  box-shadow: 0 4px 24px rgba(34,64,109,0.10);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
  gap: 20px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 3px 4px 3px;
  border-radius: 7px;
  transition: background 0.17s, color 0.16s;
  font-size: 1.03rem;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 10px 32px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  cursor: pointer;
  box-shadow: 0 2px 18px rgba(224,165,0,0.09);
  background: var(--accent);
  color: var(--primary);
  transition: background 0.18s, color 0.17s, box-shadow 0.13s, transform 0.14s;
  margin: 8px 0;
}
.btn-primary {
  background: var(--primary);
  color: var(--accent);
}
.btn:hover, .btn:focus {
  background: #FFDE8C;
  color: var(--primary);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.btn-primary:hover, .btn-primary:focus {
  background: #16325C;
  color: #FFD166;
}

/* ===============
     HERO SECTION
   =============== */
.hero {
  background: linear-gradient(125deg, var(--secondary) 70%, var(--accent) 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
  padding: 48px 20px 56px 20px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 18px;
  color: #22406dcc;
}

/* ===============
     FEATURES
   =============== */
.features {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li {
  background: var(--secondary);
  border-radius: 18px;
  padding: 32px 28px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: 0 3px 14px rgba(34,64,109,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.13s, transform 0.14s;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
}
.feature-grid img {
  width: 40px;
  height: 40px;
}

/* ===============
     ABOUT/SHORT
   =============== */
.about-short .text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-short ul {
  margin-top: 10px;
  margin-left: 18px;
  list-style: disc inside;
  color: var(--primary);
}

/* ===============
     SERVICES
   =============== */
.services-preview ul,
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.services-preview ul li,
.services .service-list li {
  background: var(--secondary);
  border-radius: 16px;
  padding: 22px 22px 16px 22px;
  box-shadow: 0 2px 14px rgba(34,64,109,.07);
  min-width: 170px;
  flex: 1 1 210px;
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  position: relative;
}
.services .service-list img {
  width: 38px;
  margin-bottom: 10px;
}
.services .service-list span {
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  border-radius: 12px;
  padding: 3px 12px;
  margin-bottom: 7px;
}
.services .service-list li p {
  font-size: 0.99rem;
  color: var(--primary);
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.benefits-list li {
  background: var(--accent);
  color: var(--primary);
  font-weight: 500;
  border-radius: 15px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 180px;
  box-shadow: 0 2px 11px rgba(34,64,109,.06);
}
.benefits-list img {
  width: 28px;
  margin: 0 6px 0 0;
}

/* ===============
     STATS & STEPS
   =============== */
.stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.stats ul li {
  font-family: 'Montserrat', sans-serif;
  background: var(--secondary);
  padding: 22px;
  border-radius: 15px;
  min-width: 170px;
  box-shadow: 0 2px 12px rgba(34,64,109,0.09);
  margin-bottom: 20px;
  color: var(--primary);
}
.steps ol {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  counter-reset: step;
  margin: 24px 0 0 0;
  padding: 0;
}
.steps ol li {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--secondary);
  border-radius: 15px;
  padding: 26px 24px 17px 24px;
  box-shadow: 0 2px 14px rgba(34,64,109,.07);
  margin-bottom: 24px;
  position: relative;
  counter-increment: step;
}
.steps ol li::before {
  content: counter(step);
  position: absolute;
  left: 18px;top: 14px;
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  opacity: 0.18;
}

/* ===============
    TIPS & FAQ
   =============== */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.tips-grid li {
  background: var(--accent);
  color: var(--primary);
  border-radius: 16px;
  padding: 19px;
  flex: 1 1 200px;
  min-width: 200px;
  box-shadow: 0 2px 11px rgba(34,64,109,0.07);
  font-size: 1rem;
  margin-bottom: 15px;
}
.faq {
  background: var(--secondary);
  border-radius: 16px;
  padding: 18px 24px;
  margin-top: 16px;
  box-shadow: 0 1px 7px rgba(34,64,109,0.06);
}
.faq h3 {
  margin-bottom: 13px;
}
.faq dt {
  font-weight: bold;
  color: var(--primary);
  margin-top: 9px;
}
.faq dd {
  margin-bottom: 10px;
  margin-left: 9px;
}

/* ===============
   BLOG & ARTICLES
   =============== */
.blog-list .search-box {
  margin-bottom: 16px;
  display: flex;
}
.search-box input[type="text"] {
  width: 100%;
  padding: 12px 18px;
  border-radius: 13px;
  border: 1px solid #bacce0;
  font-size: 1.07rem;
  background: #fff;
  margin-bottom: 0;
  outline: none;
  transition: border-color 0.18s;
}
.search-box input[type="text"]:focus {
  border-color: var(--primary);
}
.categories {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #5077ab;
}
.categories a {
  background: var(--accent);
  color: var(--primary);
  border-radius: 10px;
  padding: 4px 14px;
  margin-right: 7px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(34,64,109,0.07);
  transition: background 0.16s, color 0.13s;
}
.categories a:hover {
  background: var(--primary);
  color: var(--accent);
}
.article-preview {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
  padding: 22px 19px;
  transition: box-shadow 0.15s, transform 0.14s;
  position: relative;
}
.article-preview h3 {
  color: var(--primary);
}
.article-preview a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.14s;
}
.article-preview a:hover { color: var(--accent); }
.article-preview:hover {
  box-shadow: var(--shadow-heavy);
  transform: translateY(-2px) scale(1.02) rotate(-0.5deg);
}

/* ===============
     CTA & BOXES
   =============== */
.cta .cta-box {
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(255,209,102,0.12);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  justify-content: center;
  margin-top: 10px;
}
.cta .cta-box p {
  color: var(--primary);
  font-size: 1.11rem;
  text-align: center;
}

/* ===============
    FOOTER
   =============== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 0 0;
  border-radius: 32px 32px 0 0;
}
footer .container {
  padding-bottom: 34px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.brand-info img {
  width: 60px;
  margin-bottom: 6px;
}
.brand-info p {
  color: var(--accent);
  font-size: 1rem;
}
.contact-info p {
  font-size: 0.98rem;
}

/* ===================
    LEGAL PAGES
   =================== */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal .text-section {
  margin-top: 6px;
  font-size: 1.07rem;
  color: var(--primary);
}
.legal ul, .legal ol {
  margin-left: 20px;
  margin-bottom: 12px;
  list-style: disc inside;
}
.legal a {
  color: var(--accent);
  text-decoration: underline;
}
.legal a:hover { color: var(--primary); }

/* ===================
   THANK YOU PAGE
   =================== */
.thank-you {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 60px 20px;
  margin-bottom: 64px;
  text-align: center;
}
.thank-you h1 { color: var(--primary); }
.thank-you p { font-size: 1.18rem; color: #22406dbb; margin-bottom: 22px; }

/* ===================
   CONTACT & MAP
   =================== */
.contact .text-section {
  margin-bottom: 12px;
}
.address {
  background: var(--accent);
  color: var(--primary);
  border-radius: 15px;
  padding: 14px 26px;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 1.04rem;
}
.google-map {
  background: #dde3f0;
  border-radius: 13px;
  padding: 19px 0;
  color: #677;
  text-align: center;
  font-style: italic;
}
.business-hours p {
  margin-bottom: 3px;
  font-size: 1.02rem;
}

/* ==================
    MOBILE MENU
   ==================*/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  z-index: 201;
  top: 24px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(34,64,109,0.18);
  transition: background 0.16s, box-shadow 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 24px rgba(34,64,109,0.13);
}
.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--text-light);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.72,.06,.14,.99);
  display: flex;
  flex-direction: column;
  padding: 18px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: transparent;
  color: var(--accent);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 220;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 64px;
  gap: 16px;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border-radius: 10px;
  padding: 12px 0 7px 0;
  font-size: 1.19rem;
  width: 100%;
  transition: background 0.13s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 992px) {
  .container { max-width: 96vw; }
  .features .feature-grid,
  .services-preview ul,
  .services .service-list,
  .tips-grid,
  .stats ul,
  .benefits-list,
  .steps ol {
    gap: 16px;
  }
  .footer-nav { gap: 9px; }
  footer .content-wrapper { gap: 20px; }
}
@media (max-width: 850px) {
  .main-nav { gap: 18px; }
  header .container { gap: 10px; }
  .hero .container { padding: 32px 12px 36px 12px; }
  .section, .legal {
    padding: 28px 10px;
  }
}
@media (max-width: 760px) {
  .main-nav,
  header .btn {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex; }
  header .container {flex-direction: row;}
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cta .cta-box, .thank-you { padding: 22px 8px;}
}
@media (max-width: 640px) {
  .container { padding: 0 6px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .feature-grid li,
  .services .service-list li,
  .benefits-list li,
  .stats ul li,
  .steps ol li,
  .tips-grid li {
    padding: 14px 9px 10px 9px;
    font-size: 0.99rem;
    min-width: unset;
  }
  .testimonial-card { padding: 12px 8px; }
  .section, .legal {
    padding: 15px 0;
    margin-bottom: 30px;
  }
  .cta .cta-box { padding: 12px 5px; }
  .card { border-radius: 12px; }
  .hero .container { padding: 20px 4px 18px 4px;}
}
@media (max-width: 540px) {
  .main-nav, header .btn { display: none; }
  .mobile-menu-toggle { display: flex; }
  .feature-grid, .benefits-list, .stats ul, .service-list, .steps ol, .tips-grid {
    flex-direction: column;
    gap: 9px;
  }
}
/* Mobile: flex-direction column for text-image sections */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* === Cookie Consent Banner === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 350;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px 18px 18px;
  box-shadow: 0 -2px 16px rgba(34,64,109,0.09);
  font-size: 1rem;
  border-radius: 17px 17px 0 0;
  animation: cookieslidein 0.6s cubic-bezier(.21,0,.1,.93);
}
.cookie-consent-banner p {
  margin-bottom: 0;
  color: var(--primary);
}
.cookie-btn {
  appearance: none;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 10px;
  margin-bottom: 0;
  transition: background 0.16s, color 0.15s, box-shadow 0.12s;
  box-shadow: 0 2px 6px rgba(34,64,109,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #16325C;
  color: var(--accent);
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-btn.cookie-reject:hover { background: #F8FAFD; }
.cookie-btn.cookie-settings {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn.cookie-settings:hover { background: #fff1c2; }

@keyframes cookieslidein {
  0% { transform: translateY(100%); opacity: 0.3; }
  80% { transform: translateY(-8px); }
  100% { transform: translateY(0); opacity: 1; }
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,64,109,.72);
  z-index: 440;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modaloverlayfadein 0.18s cubic-bezier(.23,.86,.58,.98);
}
@keyframes modaloverlayfadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 8px 44px rgba(34,64,109,0.15);
  padding: 36px 24px 22px 24px;
  min-width: 320px;
  max-width: 94vw;
  font-size: 1.07rem;
  position: relative;
  animation: modalin 0.35s cubic-bezier(.14,1,.1,.95);
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@keyframes modalin {
  from { transform: translateY(60px) scale(0.92); opacity: 0.3; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 3;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: var(--primary);
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin-left: 9px;
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 11px;
  background: #BACCE0;
  position: relative;
  cursor: pointer;
  outline: none;
}
.cookie-toggle input {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 3px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.17s cubic-bezier(.57,.04,.49,1.06), background 0.18s;
}
.cookie-toggle input:checked ~ .cookie-toggle-slider {
  left: 19px;
  background: var(--accent);
}
.cookie-category.essential label {
  font-style: italic;
  color: #888;
  opacity: 0.64;
}

@media (max-width: 768px) {
  .cookie-modal { min-width: 95vw; padding: 18px 8px 15px 8px; }
}

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