/* -----------------------------------------
   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;
  min-height: 100vh;
  scroll-behavior: smooth;
  background: #F5F8FA;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F8FA;
  color: #223E50;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: #2D728F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3793b7;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* -----------------------------------------
   Typography
----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #223E50;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p { margin-bottom: 18px; }
strong { font-weight: bold; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.8rem; }
}

/* -----------------------------------------
   Container
----------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* -----------------------------------------
   Pastel Color Palette (Soft)
----------------------------------------- */
:root {
  --primary: #223E50;
  --secondary: #6AB6D9;
  --accent: #F5F8FA;
  --pastel-blue: #CBECFF;
  --pastel-mint: #D5F2EA;
  --pastel-lavender: #E9E9F6;
  --pastel-pink: #FFE3EE;
  --pastel-yellow: #FFF6D7;
  --pastel-green: #E7F7E8;
  --shadow-1: 0 2px 8px rgba(106,182,217,0.06);
  --shadow-2: 0 2px 16px 0 rgba(80, 105, 142, 0.09);
  --text-dark: #223E50;
  --text-mid: #406B85;
  --text-light: #7d98b3;
  --card-bg: #fff;
}

/* -----------------------------------------
   Main Layout & Section Spacing
----------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: var(--shadow-1);
}
@media (max-width: 600px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

/* -----------------------------------------
   Header & Navigation
----------------------------------------- */
header {
  background: linear-gradient(90deg, #D5F2EA 0%, #CBECFF 45%, #FFE3EE 100%);
  box-shadow: 0 1px 12px rgba(80,158,190,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E9E9F6;
  color: var(--secondary);
}
.cta-btn {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #6AB6D9 70%, #D5F2EA 100%);
  border: none;
  color: #223E50;
  padding: 12px 28px;
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  margin-left: 16px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #47b6d8 70%, #cee9e3 100%);
  color: #165477;
  transform: translateY(-2px) scale(1.045);
  outline: none;
}

/* Burger Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #406B85;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1202;
}
.mobile-menu-toggle:hover {
  color: #223E50;
}

/* Hide main nav on mobile */
@media (max-width: 950px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }
}

/* Mobile Navigation and Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: linear-gradient(120deg, #CBECFF 0%, #FFE3EE 100%);
  box-shadow: 0 4px 32px rgba(80,158,190,0.14);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.61,0.01,0.37,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 20px;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #223E50;
  align-self: flex-end;
  margin: 24px 32px 20px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #6AB6D9;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  margin-top: 12px;
  padding-bottom: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.25rem;
  color: #223E50;
  padding: 10px 0 10px 0;
  border-radius: 11px;
  background: none;
  min-width: 180px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #E9E9F6;
  color: #6AB6D9;
}

@media (max-width: 950px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -----------------------------------------
   Hero Section
----------------------------------------- */
.hero {
  background: linear-gradient(135deg, #CBECFF 0%, #FFF6D7 100%);
  min-height: 320px;
  padding: 72px 0 72px 0;
  display: flex;
  align-items: center;
  border-radius: 0 0 60px 60px;
  box-shadow: var(--shadow-1);
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 23px;
}
.hero h1 {
  color: #223E50;
  font-size: 2.3rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: #406B85;
}
.hero .cta-btn {
  margin-top: 18px;
}
@media (max-width: 700px) {
  .hero {
    min-height: unset;
    padding: 38px 0 34px 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 22px;
  }
  .hero h1 { font-size: 1.38rem; }
}

/* -----------------------------------------
   Features Section
----------------------------------------- */
.features {
  width: 100%;
  background: var(--accent);
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 34px 0;
  box-shadow: var(--shadow-1);
}
.features h2 {
  font-size: 1.75rem;
  margin-bottom: 28px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  margin-top: 6px;
}
.features ul li {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-1);
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 210px;
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 6px 20px 0 rgba(106,182,217,0.15);
  transform: translateY(-5px) scale(1.024);
}
.features ul li img {
  height: 38px; width: 38px;
  margin-bottom: 2px;
}
.features ul li span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #406B85;
}

/* -----------------------------------------
   Services Section
----------------------------------------- */
.services, .services-detail {
  width: 100%;
  margin-bottom: 60px;
}
.services h2, .services-detail h1 {
  font-size: 1.6rem;
  margin-bottom: 26px;
}
.services ul, .services-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.services ul li, .services-detail ul li {
  background: #fff;
  border-radius: 21px;
  box-shadow: var(--shadow-1);
  padding: 21px 18px 13px 18px;
  min-width: 205px;
  max-width: 340px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.services ul li:hover, .services-detail ul li:hover {
  box-shadow: 0 7px 21px 0 rgba(207,213,245,0.14);
  transform: translateY(-4px) scale(1.015);
}
.services ul li h3, .services-detail ul li h2 {
  font-size: 1.02rem;
  color: #2D728F;
  margin-bottom: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-detail ul li span {
  color: #7d98b3;
  font-size: 0.92rem;
  margin-left: 11px;
  font-weight: 400;
}

/* -----------------------------------------
   Testimonial Sections
----------------------------------------- */
.testimonials, .testimonials-list {
  background: linear-gradient(110deg, #D5F2EA 0%, #E9E9F6 100%);
  padding: 48px 0 48px 0;
  margin-bottom: 50px;
  border-radius: 28px;
}
.testimonials .content-wrapper, .testimonials-list .content-wrapper {
  align-items: flex-start;
}
.testimonials h2, .testimonials-list h1 {
  font-size: 1.45rem;
  margin-bottom: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  padding: 26px 24px 18px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 430px;
  min-width: 220px;
  color: #223E50;
  font-size: 1.02rem;
  transition: box-shadow 0.16s, transform 0.13s;
  border: 1px solid #ECF1F6;
}
.testimonial-card strong {
  color: #6AB6D9;
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-card span {
  color: #FFD777;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 27px 0 rgba(106,182,217,0.16);
  transform: scale(1.021);
}

.testimonials .content-wrapper, .testimonials-list .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

/* -----------------------------------------
   Feature Items Pattern
----------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-1);
  padding: 20px 22px;
  margin-bottom: 20px;
}

/* -----------------------------------------
   CTA Section
----------------------------------------- */
.cta {
  margin-bottom: 60px;
  background: #FFE3EE;
  border-radius: 36px;
  box-shadow: var(--shadow-2);
  padding: 40px 0;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta h2 {
  font-size: 1.3rem;
}
@media (max-width: 700px) {
  .cta { border-radius: 16px; padding: 24px 0; }
  .cta .content-wrapper { gap: 13px; }
}

/* -----------------------------------------
   Card Container Patterns
----------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 21px;
  box-shadow: var(--shadow-2);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.13s;
  min-width: 200px;
  max-width: 300px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.card:hover {
  box-shadow: 0 4px 22px rgba(212,184,220,0.14);
  transform: scale(1.019);
}

/* -----------------------------------------
   Other Flex Patterns
----------------------------------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* -----------------------------------------
   Pricing Table
----------------------------------------- */
.pricing table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.pricing th, .pricing td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid #ECF1F6;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.pricing th {
  background: #D5F2EA;
  font-family: 'Montserrat', sans-serif;
  color: #223E50;
  font-weight: bold;
}
.pricing tr:last-child td {
  border-bottom: none;
}

/* -----------------------------------------
   Contact & Forms (if present)
----------------------------------------- */
.contact ul {
  margin: 18px 0 16px 0;
  padding-left: 0;
}
.contact ul li {
  margin-bottom: 12px;
  font-size: 1.04rem;
  color: #223E50;
  display: flex;
  gap: 7px;
  line-height: 1.5;
}
.contact ul li strong {
  width: 120px;
  font-weight: 600;
  color: #6AB6D9;
}

input, textarea, select {
  border: 1px solid #c8e1ef;
  border-radius: 12px;
  padding: 11px;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
  box-shadow: 0 2px 4px rgba(144,188,218,0.04);
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border-color: #6AB6D9;
  background: #e9f5fa;
}
button, .btn {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 17px;
  padding: 9px 23px;
  border: none;
  background: #CBECFF;
  color: #223E50;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s, color 0.13s, transform 0.18s;
  box-shadow: var(--shadow-1);
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #6AB6D9;
  color: #fff;
  box-shadow: 0 3px 17px rgba(106,182,217,0.13);
  transform: translateY(-1.5px);
}

/* -----------------------------------------
   Footer
----------------------------------------- */
footer {
  width: 100%;
  background: linear-gradient(90deg, #CBECFF 0%, #D5F2EA 100%);
  box-shadow: 0 -1px 16px rgba(106,182,217,0.08);
  border-radius: 36px 36px 0 0;
  margin-top: 50px;
}
footer .container {
  padding: 26px 18px 18px 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  color: #2D728F;
  font-size: 0.99rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  transition: color 0.14s;
}
.footer-menu a:hover {
  color: #406B85;
}
.footer-contact {
  color: #223E50;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #6AB6D9;
}
.footer-brand {
  align-self: flex-end;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
@media (max-width: 700px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .footer-brand {
    align-self: flex-start;
    margin-top: 12px;
  }
}

/* -----------------------------------------
   "Thank You" Section
----------------------------------------- */
.thank-you {
  background: linear-gradient(110deg, #CBECFF 0%, #E7F7E8 100%);
  border-radius: 32px;
  padding: 54px 0;
  text-align: center;
  min-height: 280px;
}
.thank-you .content-wrapper {
  align-items: center;
}

/* -----------------------------------------
   Legal and Policy Sections
----------------------------------------- */
.privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-1);
  padding: 40px 22px 34px 22px;
  margin-bottom: 60px;
}
.privacy-policy h2, .gdpr-info h2, .cookie-policy h2, .terms-of-use h2 {
  font-size: 1.17rem;
  margin-top: 22px;
  margin-bottom: 13px;
  color: #6AB6D9;
}

/* -----------------------------------------
   Review Invite Section
----------------------------------------- */
.review-invite {
  background: #E7F7E8;
  border-radius: 26px;
  padding: 36px 0;
  text-align: center;
  margin-bottom: 54px;
}
.review-invite .content-wrapper {
  align-items: center;
  gap: 14px;
}

/* -----------------------------------------
   Responsive Adjustments
----------------------------------------- */
@media (max-width: 1100px) {
  .section, .services, .services-detail, .testimonials, .testimonials-list,
  .about, .values, .usp, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use {
    border-radius: 14px;
    padding: 18px 7px 13px 7px;
  }
}
@media (max-width: 850px) {
  .features ul, .services ul, .card-container, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .features ul, .services ul, .services-detail ul {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { max-width: 100%; min-width: 0; }
  .card { max-width: 100%; min-width: 0; }
  .content-grid { flex-direction: column; gap: 12px; }
}

/* -----------------------------------------
   Cookie Consent Banner (Bottom Fixed)
----------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #CBECFF 0%, #FFE3EE 100%);
  color: #223E50;
  box-shadow: 0 -2px 24px rgba(80,105,142,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 30px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: cookieBannerShow 0.48s cubic-bezier(0.58,0.01,0.39,0.98) 1;
}
@keyframes cookieBannerShow {
  0% { transform: translateY(100%); opacity: 0; }
  90% { transform: translateY(-4px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 1rem;
  color: #223E50;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn, .cookie-btn--settings {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 7px 16px;
  border: none;
  background: #fff;
  color: #223E50;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.12s, box-shadow 0.15s;
  box-shadow: 0 2px 7px rgba(106,182,217,0.08);
}
.cookie-btn--accept {
  background: #D5F2EA;
}
.cookie-btn--accept:hover {
  background: #B6EEDE;
  color: #19748C;
}
.cookie-btn--reject {
  background: #FFE3EE;
}
.cookie-btn--reject:hover {
  background: #FFB8D7;
  color: #BA2B6B;
}
.cookie-btn--settings {
  background: #CBECFF;
}
.cookie-btn--settings:hover {
  background: #8edcff;
  color: #165477;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 9px 15px 11px;
    font-size: 0.99rem;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(133,159,191, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: cookieModalFadeIn 0.36s;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  padding: 32px 26px 27px 26px;
  box-shadow: 0 10px 42px 0 rgba(106,182,217, 0.15);
  min-width: 320px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
}
.cookie-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #223E50;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal__close:hover {
  color: #6AB6D9;
}
.cookie-modal h2 {
  color: #223E50;
  font-size: 1.17rem;
  margin-bottom: 5px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category__label {
  font-weight: 600;
  color: #223E50;
  font-size: 1rem;
  min-width: 160px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}
.cookie-category__toggle {
  width: 38px;
  height: 20px;
  background: #E9E9F6;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-category__toggle[data-checked="true"] {
  background: #B6EEDE;
}
.cookie-category__toggle::after {
  content: '';
  position: absolute;
  top: 2.5px; left: 2.5px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(168,226,215,0.13);
  transition: left 0.15s, background 0.15s;
}
.cookie-category__toggle[data-checked="true"]::after {
  left: 20px;
  background: #6AB6D9;
}
.cookie-modal__save {
  background: #D5F2EA;
  color: #223E50;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 20px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.17s, color 0.16s;
}
.cookie-modal__save:hover {
  background: #B6EEDE;
  color: #1A5C7B;
}
.cookie-category .cookie-category__desc {
  color: #7d98b3;
  font-size: 0.92rem;
  font-weight: 400;
}

/* Essential category locked */
.cookie-category__toggle[data-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 19px 4px 20px 9px;
  }
}

/* -----------------------------------------
   Animations & Micro Interactions
----------------------------------------- */
.cta-btn, .btn, button, .card, .testimonial-card, .section, .card-container > *, .feature-item {
  transition: box-shadow 0.17s, background 0.15s, color 0.14s, transform 0.19s;
}

/* -----------------------------------------
   Accessibility/Focus states
----------------------------------------- */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2px dashed #6AB6D9;
  outline-offset: 3px;
}

/* Hide reflowed nav on desktop */
@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* End of CSS file */
