/* ================= BOM - CSS RESET & FONT DEFINITIONS ================== */
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,
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;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html { box-sizing: border-box; height: 100%; }
*, *:before, *:after { box-sizing: inherit; }
html, body  {height: 100%;}
body {
  min-height: 100vh;
  background: #F6F8FB;
  font-family: 'Roboto', Arial, sans-serif;
  color: #173463;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #4AA0C6; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #173463; }
strong { font-weight: 700; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; background: none; border: none; outline: none;
}

/* ================= FONTS & TYPOGRAPHY ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #173463;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.18rem; }
}

/* ================= BRAND COLORS AS CSS VARS =================== */
:root {
  --brand-primary: #173463;
  --brand-secondary: #4AA0C6;
  --brand-accent: #F6F8FB;
  --brand-highlight: #FFD12A;
  --brand-danger: #EF463F;
}

/* ================= LAYOUT & SECTIONS ========================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section { padding: 28px 10px; margin-bottom: 32px; }
  .content-wrapper { gap: 18px; }
}

/* ================= HEADER: MAIN NAV ========================= */
header {
  width: 100%;
  background: #fff;
  border-bottom: 4px solid var(--brand-primary);
  position: sticky;
  top: 0; z-index: 99;
  box-shadow: 0 6px 16px rgba(23,52,99,.05);
}
.main-nav {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
.logo-link img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1rem;
  padding: 8px 12px 5px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.cta-button {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  padding: 12px 32px;
  border-radius: 30px;
  box-shadow: 0 4px 20px 0 rgba(74,160,198,0.10);
  margin-left: 20px;
  letter-spacing: 0.04em;
  transition: background .2s, transform .14s, box-shadow .18s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-primary);
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 36px 0 rgba(23,52,99,0.20);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: var(--brand-secondary);
  color: white;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: #FFD12A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #173463ee;
  color: #fff;
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
  transition: opacity 0.30s cubic-bezier(.8,0,.44,1), transform 0.38s cubic-bezier(.67,.04,.17,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 22px 0 14px 20px;
  cursor: pointer;
  outline: none;
  align-self: flex-start;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--brand-highlight); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding: 0 32px;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: none;
  color: white;
  padding: 20px 0 8px 0;
  border-bottom: 2px solid rgba(255,255,255,.12);
  transition: color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-highlight);
}
@media (max-width: 930px) {
  .main-nav ul,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 931px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}

/* ================= HERO SECTIONS ======================= */
.hero {
  width: 100%;
  padding: 50px 0 40px 0;
  background: linear-gradient(120deg, #F6F8FB 60%, #4AA0C6 300%);
  min-height: 320px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.hero p {
  font-size: 1.17rem;
  font-weight: 500;
  color: #173463dd;
}
@media (max-width: 768px) {
  .hero { padding: 26px 0 22px 0; min-height: 180px; }
  .hero h1 { font-size: 2rem; }
}
  
/* ================= GENERIC FLEX LAYOUTS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px 0 rgba(23,52,99,0.07);
  padding: 24px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px 0 rgba(74,160,198,0.21);
  transform: translateY(-2px) 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;
}
@media (max-width: 800px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* =================== FEATURES & USP/COUNTERS ===================== */
.features, .biology-features, .tech-features, .inventions-overview {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
  border-radius: 24px;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-accent);
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(23,52,99,0.06);
  padding: 24px 20px 20px 22px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 330px;
  transition: box-shadow .15s, transform .13s;
}
.feature-item img {
  width: 36px; height: 36px; margin-bottom: 3px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 32px 0 rgba(74,160,198,0.19);
  transform: scale(1.02) translateY(-3px);
}
@media (max-width: 1000px) {
  .feature-grid, .feature-list {flex-direction: column;gap: 20px;}
  .feature-item {max-width: 100%;width: 100%;}
}
.usp-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.visual-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  width: 100%;
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 18px;
  padding: 28px 30px 22px 22px;
  min-width: 135px;
  flex: 1 1 120px;
  box-shadow: 0 2px 13px 0 rgba(74,160,198,0.09);
}
.counter-item .count {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #FFD12A;
}
.counter-item p {
  color: #fff;
}
@media (max-width: 820px) {
  .visual-counters {flex-direction: column;gap: 16px;}
  .counter-item {width: 100%;}
}

/* =================== SERVICES & SERVICE LIST ==================== */
.services {
  background: var(--brand-accent);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.service-list li {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px rgba(23,52,99,0.07);
  padding: 20px 18px 16px 20px;
  margin-bottom: 20px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 200px;
  max-width: 318px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li strong { color: var(--brand-primary); font-size: 1.09em; font-weight: 700; }
.service-price {
  display: inline-block;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-secondary);
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .service-list {flex-direction: column;gap: 20px;}
  .service-list li {max-width: 100%;}
}

/* =================== TESTIMONIALS ============================= */
.testimonials {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  background: #F6F8FB;
  box-shadow: 0 2px 14px 0 rgba(23,52,99,.08);
  border-radius: 18px;
  min-width: 230px;
  flex: 1 1 220px;
  color: #173463;
  font-size: 1.07rem;
  transition: box-shadow .18s, transform .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 26px 0 rgba(74,160,198,0.22);
  transform: scale(1.018) translateY(-2px);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 1.013rem;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .testimonial-slider {flex-direction: column;gap: 18px;}
  .testimonial-card {width: 100%;}
}

/* =================== FACTS & FACT CARDS ======================== */
.facts-overview, .facts-section {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 24px;
  padding: 40px 0;
}
.fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.fact-snippet {
  background: var(--brand-accent);
  color: #173463;
  border-radius: 16px;
  padding: 22px 22px 18px 18px;
  flex: 1 1 210px;
  min-width: 190px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(23,52,99,0.06);
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .13s;
}
.fact-snippet h3 { font-size: 1.22rem; font-weight: 800; color: var(--brand-primary); }
.fact-snippet a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-secondary);
  text-decoration: underline;
  margin-top: 6px;
  transition: color .16s;
}
.fact-snippet a:hover,.fact-snippet a:focus { color: var(--brand-primary);}
.fact-snippet:hover, .fact-snippet:focus-within {
  box-shadow: 0 7px 30px rgba(74,160,198,0.17);
  transform: scale(1.019) translateY(-2px);
}
@media (max-width: 900px) {
  .fact-list {flex-direction: column;gap: 16px;}
  .fact-snippet {max-width: 100%;}
}
.category-tabs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.category-tabs a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--brand-secondary);
  border-radius: 11px;
  padding: 7px 22px;
  font-size: 1rem;
  transition: background .17s, color .17s, transform .13s;
}
.category-tabs a:hover, .category-tabs a:focus {
  background: var(--brand-primary);
  color: #FFD12A;
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .category-tabs {flex-direction: column;gap: 10px;}
}

.fact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.fact-card {
  background: var(--brand-accent);
  color: #173463;
  border-radius: 17px;
  box-shadow: 0 2px 14px 0 rgba(23,52,99,.07);
  padding: 22px 20px;
  flex: 1 1 200px;
  min-width: 175px;
  max-width: 295px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .16s, transform .13s;
}
.fact-card h3 { font-size: 1.12rem; font-weight: 800; color: var(--brand-primary); margin-bottom: 5px; }
.fact-card:hover, .fact-card:focus-within {
  box-shadow: 0 8px 36px 0 rgba(74,160,198,0.16);
  transform: scale(1.018) translateY(-2.5px);
}
@media (max-width: 900px) {
  .fact-cards {flex-direction: column;gap: 14px;}
  .fact-card {max-width: 100%;}
}

.service-teaser, .feature-teaser {
  padding: 20px 26px;
  background: var(--brand-secondary);
  border-radius: 13px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.service-teaser a {
  color: #FFD12A;
  text-decoration: underline;
}
.service-teaser a:hover, .service-teaser a:focus {color: #fff;}

/* LEGAL/TEXT SECTIONS */
.legal-section {
  background: #fff;
  border-radius: 22px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.legal-section .text-section {
  margin-top: 14px;
  background: var(--brand-accent);
  padding: 24px 16px 10px 24px;
  border-radius: 12px;
  box-shadow: 0 1.5px 9px rgba(23,52,99,.05);
}
.legal-section ul {
  margin: 14px 0 12px 20px;
  padding-left: 12px;
  list-style: disc;
  color: var(--brand-primary);
}
.legal-section li strong {color: var(--brand-secondary);}

/* =================== CONTACT SECTION ========================= */
.contact-section {
  background: #fff;
  border-radius: 24px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 1.08rem;
  color: var(--brand-primary);
}
.map-section {
  margin-bottom: 28px;
}
.text-section {
  background: var(--brand-accent);
  padding: 18px 14px 8px 18px;
  border-radius: 10px;
  box-shadow: 0 1.5px 9px rgba(23,52,99,0.06);
}

/* =================== FOOTER ============================== */
footer {
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  margin-top: 60px;
}
.footer {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 0 0 22px 22px;
  padding: 38px 0 14px 0;
}
.footer .container {
  padding: 0 20px;
}
.footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 180px;
  max-width: 310px;
}
.footer-brand img {height: 32px; margin-bottom: 6px;}
.footer-brand p {color: #fff; font-size: 0.97rem; opacity: .85;}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.92;
  transition: color .12s, opacity .14s;
  border-radius: 8px;
  padding: 5px 10px;
  margin-right: 1px;
}
.footer-links a:hover, .footer-links a:focus {
  color: #FFD12A;
  opacity: 1;
  background: rgba(74,160,198,0.14);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 220px;
  max-width: 330px;
  font-size: 0.97rem;
  color: #fff;
}
.footer-contact h4 {
  font-size: 1.11rem;
  margin-bottom: 7px;
  color: #FFD12A;
  font-weight: 800;
}
.footer-contact img {width:14px; height:14px; vertical-align: middle; margin-right: 6px;}
@media (max-width: 900px) {
  .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* =================== THANK YOU SECTION ===================== */
.thankyou-section {
  background: #fff;
  border-radius: 26px;
  padding: 60px 10px 50px 10px;
  margin-bottom: 60px;
  text-align: center;
}
.thankyou-section h1 {
  color: var(--brand-secondary);
  font-size: 2.6rem;
  margin-bottom: 6px;
}
.thankyou-section h2 {
  color: var(--brand-primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.thankyou-section p {
  color: #173463cc;
  font-size: 1.13rem;
  margin-bottom: 24px;
}

/* =================== COOKIE CONSENT BANNER & MODAL ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #173463ee;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 36px 22px 26px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 26px rgba(23,52,99,0.13);
  font-size: 1.03rem;
  opacity: 1;
  transition: opacity .4s cubic-bezier(.77,0,.18,1) .18s, transform .45s cubic-bezier(.94,0,.04,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
.cookie-banner-message {
  flex: 1 1 auto;
  margin-right: 25px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  font-size: 1.03rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-banner button {
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 11px;
  font-size: 1.01rem;
  padding: 9px 18px;
  margin: 0;
  border: none;
  cursor: pointer;
  transition: background .14s, color .15s, box-shadow .13s, transform .12s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand-primary);
  color: #FFD12A;
  transform: scale(1.03);
  box-shadow: 0 3px 14px 0 rgba(255,209,42,0.14);
}
.cookie-banner .cookie-settings-btn {
  background: #FFD12A;
  color: #173463;
}
.cookie-banner .cookie-settings-btn:hover, 
.cookie-banner .cookie-settings-btn:focus {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid #FFD12A;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 10px 14px 10px;
    font-size: .97rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

.cookie-modal-bg {
  content: '';
  position: fixed;
  inset: 0;
  background: #333b66bb;
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s cubic-bezier(.7,0,.38,1);
}
.cookie-modal-bg.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-55%) scale(.96);
  min-width: 330px;
  max-width: 97vw;
  background: #fff;
  color: var(--brand-primary);
  z-index: 1200;
  border-radius: 18px;
  padding: 38px 30px 24px 30px;
  box-shadow: 0 9px 42px rgba(23,52,99,0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s cubic-bezier(.62,0,.43,1), transform .24s;
}
.cookie-modal.show {
  opacity: 1; pointer-events: auto; transform: translate(-50%,-57%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 12px;
  color: var(--brand-secondary);
  font-weight: 900;
}
.cookie-modal .cookie-categories {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brand-accent);
  border-radius: 10px;
  padding: 12px 13px 9px 14px;
  font-size: 1.03rem;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  appearance: none;
  width: 22px; height: 22px;
  background: #fff;
  border: 2px solid var(--brand-secondary);
  border-radius: 7px;
  transition: box-shadow 0.16s, border 0.14s;
  cursor: pointer;
  position: relative;
}
.cookie-category input[type='checkbox']:checked {
  background: var(--brand-secondary);
  border: 2px solid var(--brand-primary);
  box-shadow: 0 0 7px #4AA0C677;
}
.cookie-category input[type='checkbox']:checked:after {
  content: '';
  display: block;
  width: 12px; height: 12px;
  margin: 3px;
  background: #FFD12A;
  border-radius: 3px;
  position: absolute;
  top: 0; left: 0;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 9px 18px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  background: var(--brand-secondary);
  color: #fff;
  transition: background .14s, color .14s;
}
.cookie-modal .modal-actions button.cancel {
  background: #FFD12A;
  color: var(--brand-primary);
}
.cookie-modal .modal-actions button.cancel:hover, 
.cookie-modal .modal-actions button.cancel:focus {
  background: #fff;
  border: 2px solid #FFD12A;
}
@media (max-width: 480px) {
  .cookie-modal { padding: 22px 8px 10px 10px; min-width: unset; }
}

/* ================ ANIMATIONS =============== */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, .section, .card, .feature-item, .fact-card, .fact-snippet, .testimonial-card, .service-list li, .thankyou-section {
  animation: fadeSlideIn .6s cubic-bezier(.22,.78,.25,1.12) 0s 1;
}

/* ================ MISC/UTILITIES ================ */
::-webkit-scrollbar { width: 10px; background: #f4f4fb; }
::-webkit-scrollbar-thumb { background: #dbe4f7; border-radius: 7px; }

/* Geometric highlight bubbles for backgrounds -- feel free to style bg decorations via before/after if you wish! */

/* ================ COLOR / CONTRAST AIDS ================ */
.text-contrast {
  background: #fff;
  color: #173463;
}
.bg-accent {
  background: var(--brand-accent) !important;
  color: var(--brand-primary) !important;
}

/* ============ END ============= */
