/* === CSS 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, main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2F7FB;
  color: #223E67;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul,ol {
  list-style: none;
}
a {
  color: #223E67;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: inline-block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}

/* === TYPOGRAPHY - PLAYFUL DYNAMIC === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #223E67;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(34,62,103,0.05);
}
h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
}
h4, h5, h6 {
  font-size: 1.18rem;
}
p, li, td, th {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #223E67;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* Fun font pop for displays */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Roboto:wght@400;700&display=swap');


/* === COLORS === */
:root {
  --primary: #223E67;
  --primary-rgb: 34,62,103;
  --secondary: #92C6EA;
  --accent: #F2F7FB;
  --fun-bright: #FFD43B;
  --fun-green: #54D1B2;
  --fun-red: #F95265;
  --fun-orange: #FFA548;
}

/* === LAYOUT HELPERS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === FLEX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(34,62,103,0.07), 0 1.5px 5px 0 rgba(146,198,234,0.1);
  background: #fff;
  padding: 28px 22px;
  flex: 1 1 265px;
  transition: transform 0.18s cubic-bezier(.7,1.5,.65,1) 0s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1.3deg);
  box-shadow: 0 10px 34px 0 rgba(146,198,234,0.16), 0 2px 8px 0 rgba(34,62,103,0.10);
}
.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: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 3px 32px 0 rgba(146,198,234,0.10);
  border: 2px solid #92C6EA;
  animation: fadeInTestimonial 0.9s cubic-bezier(.37,1.5,.65,1) both;
  position: relative;
}
@keyframes fadeInTestimonial {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 1.5px 12px 0 rgba(34,62,103,0.07);
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 100;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 12px;
  border-radius: 10px;
  transition: background 0.17s, color 0.16s;
  color: var(--primary);
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav a.cta.primary {
  background: var(--fun-bright);
  color: var(--primary);
  box-shadow: 0 3px 10px rgba(255,212,59,0.13);
  border-radius: 999px;
  padding: 9px 22px;
  margin-left: 16px;
  font-size: 1.07rem;
  animation: popUpCta 0.7s cubic-bezier(.36,1.7,.61,1) both;
  border: 2px solid transparent;
}
@keyframes popUpCta {
  from { transform: scale(0.8); opacity: 0; } 
  to   { transform: none; opacity: 1; }
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--primary);
}

/* Mobile Nav Burger and Menu Overlay */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 6px 16px;
  border-radius: 12px;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 120;
  transition: background .17s;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,1.5,.65,1) 0s;
  box-shadow: -5px 0 40px 0 rgba(34,62,103,0.14);
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu 0.35s cubic-bezier(.22,1.5,.62,1) both;
}
@keyframes slideInMenu {
  from { transform: translateX(100%) scale(0.98); }
  to   { transform: translateX(0) scale(1); }
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--primary);
  font-size: 2.3rem;
  border: none;
  margin: 18px 30px 18px 0;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--fun-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0 32px;
  margin-top: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  padding: 15px 8px;
  color: var(--primary);
  border-radius: 9px;
  margin-bottom: 7px;
  width: 100%;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* === HERO BANNER === */
.hero {
  background: linear-gradient(90deg, #FFD43B 1%, #92C6EA 65%, #F2F7FB 100%);
  padding: 44px 0 50px 0;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 6px 32px 0 rgba(34,62,103,0.09);
  overflow: hidden;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}
.hero h1 { color: var(--primary); text-shadow: 0 2px 0 #ffffbe55; }
.hero p {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero .cta {
  margin-top: 10px;
}

/* === FEATURES === */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 32px 0 rgba(146,198,234,0.08);
}
.features h2 {
  color: var(--primary);
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4px;
  margin-bottom: 2px;
}
.features ul li {
  flex: 1 1 220px;
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34,62,103,0.06);
  padding: 18px 14px 18px 38px;
  font-size: 1.07rem;
  position: relative;
  min-width: 160px;
  min-height: 86px;
  color: var(--primary);
  transition: transform 0.17s;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: featuresGlow 0.95s cubic-bezier(.26,1.15,.55,1) both;
}
.features ul li:hover {
  transform: scale(1.035) rotate(-2deg);
  box-shadow: 0 6px 32px 0 rgba(146,198,234,0.15);
  background: #fffbe2;
}
.features ul li img {
  width: 34px;
  height: 34px;
  margin-right: 5px;
}
@keyframes featuresGlow {
  from { box-shadow: 0 0 0 #92C6EA00; }
  to { box-shadow: 0 4px 36px 0 rgba(146,198,234,0.09); }
}

/* === SERVICES / SERVICE CARDS === */
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.services ul li {
  flex: 1 1 226px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 18px 23px 21px;
  box-shadow: 0 3px 32px 0 rgba(146,198,234,0.06);
  border-left: 6px solid var(--fun-bright);
  position: relative;
  min-width: 170px;
  min-height: 105px;
  transition: box-shadow 0.18s, transform 0.16s;
  animation: serviceCardPop 0.7s cubic-bezier(.36,1.4,.51,1) both;
}
.services ul li strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-size: 1.11rem;
  font-weight: 700;
}
.services ul li:hover {
  box-shadow:0 7px 34px 0 rgba(255,212,59,0.14),0 2px 8px 0 rgba(146,198,234,0.09);
  transform: translateY(-6px) scale(1.03) rotate(0.9deg);
  background: #FFFAEF;
}
.services ul li span {
  font-weight: 600;
  color: var(--fun-green);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 6px;
  display: block;
  font-size: 1.07rem;
}
@keyframes serviceCardPop {
  from { opacity: 0; transform: scale(.85) translateY(35px); }
  to   { opacity: 1; transform: none; }
}
.services .cta.secondary {
  margin-top: 20px;
}

/* === SERVICE / PRICE TABLES === */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(146,198,234,0.08);
  margin: 30px 0 16px 0;
  overflow: hidden;
  font-size: 1rem;
}
table thead tr {
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
}
table th, table td {
  padding: 13px 16px;
  text-align: left;
}
table tbody tr {
  border-bottom: 1px solid #F2F7FB;
}
table tbody tr:nth-child(even) {
  background: #F2F7FB;
}
table caption {
  text-align: left;
  font-size: 1.10rem;
  color: var(--primary);
  padding-bottom: 6px;
}

/* === CTA BUTTONS === */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 20px;
  padding: 13px 30px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  box-shadow:0 3px 16px 0 rgba(146,198,234,0.10);
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.22s;
  margin-bottom: 7px;
}
.cta.primary {
  background: var(--fun-bright);
  color: var(--primary);
  border-radius: 30px;
  border: 2px solid var(--fun-bright);
  box-shadow: 0 4px 18px 0 rgba(255,212,59,0.14);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 22px 0 rgba(146,198,234,0.20);
}
.cta.secondary {
  background: var(--fun-green);
  color: #fff;
  border-radius: 24px;
  border: 2px solid var(--fun-green);
  box-shadow:0 4px 18px 0 rgba(84,209,178,0.12);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--fun-orange);
  color: var(--primary);
  border-color: var(--fun-orange);
}

/* === TESTIMONIALS === */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2, .testimonials h1 {
  color: var(--primary);
}
.testimonials .testimonial-card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 12px;
  box-shadow: 0 4px 28px 0 rgba(146,198,234,0.13);
  border-left: 8px solid var(--fun-green);
  color: #223E67;
}
.testimonials .testimonial-card strong {
  color: var(--fun-orange);
  font-size: 1.09rem;
  letter-spacing: -.6px;
  margin-top: 6px;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: block;
}
.testimonials .testimonial-card p {
  font-size: 1.12rem;
}
.testimonials .testimonial-card img {
  width: 30px;
  height: 30px;
  margin-right: 2px;
  filter: drop-shadow(0 1px 2px #92C6EA44);
}

/* === CONTACT SECTION === */
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 32px 0 rgba(34,62,103,0.08);
}
.contact .content-wrapper {
  gap: 18px;
}
.contact .text-section {
  margin-bottom: 18px;
}
.contact p {
  margin-bottom: 8px;
}
.contact a.cta.secondary {
  margin-top: 18px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  min-height: 100px;
  padding: 38px 20px 20px 20px;
  border-radius: 28px 28px 0 0;
  margin-top: 60px;
  box-shadow: 0 -5px 20px 0 rgba(34,62,103,0.10);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline dotted rgba(255,255,255,0.22);
  border-radius: 7px;
  transition: color .18s, background .17s;
  padding: 7px 10px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-size: .98rem;
}
.footer-branding img {
  height: 36px;
  margin-bottom: 5px;
}
.footer-branding span {
  color: #E3EDF9;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(146,198,234,0.17);
  border-top: 3px solid var(--secondary);
  z-index: 3999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  animation: cookieBannerSlide 0.6s cubic-bezier(.31,1.1,.54,1.2);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
}
@keyframes cookieBannerSlide {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-text {
  max-width: 70vw;
  color: var(--primary);
  line-height: 1.47;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: var(--fun-bright);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  padding: 8px 22px;
  border-radius: 18px;
  border: 2px solid var(--fun-bright);
  box-shadow: 0 2px 8px rgba(255,212,59,0.11);
  margin-left: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.18s, border 0.16s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.cookie-btn.reject {
  background: var(--fun-red);
  color: #fff;
  border-color: var(--fun-red);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-btn.settings {
  background: var(--fun-green);
  color: #fff;
  border-color: var(--fun-green);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--fun-orange);
  color: var(--primary);
  border-color: var(--fun-orange);
}

/* Cookie Modal Overlay */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,62,103,0.22);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.35s both;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  padding: 36px 26px 26px 26px;
  border-radius: 22px;
  box-shadow: 0 5px 24px 0 rgba(146,198,234,0.15);
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  animation: modalPopIn 0.45s cubic-bezier(.25,1.7,.61,1) both;
}
@keyframes modalPopIn {
  from { transform: scale(.86) translateY(60px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--fun-red);
  cursor: pointer;
  line-height: 1;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
}
.cookie-modal .cookie-category input[type='checkbox']:disabled {
  accent-color: #999;
  cursor: not-allowed;
}
.cookie-modal .cookie-category label {
  font-size: 1.03rem;
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 18px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1320px) {
  .container { max-width: 98vw; }
  .main-nav { max-width: 100vw; }
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 10px;
    font-size: .96rem;
  }
  .features ul,
  .services ul {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 6px; }
  .hero .content-wrapper { max-width: 98vw; }
}
@media (max-width: 880px) {
  .features ul,
  .services ul {
    flex-direction: column;
    gap: 15px;
  }
  .hero {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 768px) {
  /* Responsive flex containers */
  .content-grid,
  .features ul,
  .services ul,
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 19px 7px 17px 7px;
    font-size: 1rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px 19px 10px;
    font-size: .96rem;
    gap: 10px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-branding img { height: 26px; }
}
@media (max-width: 580px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.13rem; }
  .features ul li, .services ul li {
    min-height: 64px;
    padding: 13px 9px 12px 18px;
    font-size: .99rem;
  }
  .card {
    padding: 18px 8px;
    border-radius: 12px;
  }
  .section, .hero, .features, .testimonials, .contact {
    padding-left: 7px; padding-right: 7px;
  }
  .services ul, .features ul {
    gap: 10px;
  }
  .testimonials .testimonial-card {
    padding: 14px 6px 10px 9px;
    border-radius: 10px;
    font-size: .99rem;
  }
  table th, table td { padding: 8px 5px; }
}

/* === UTILITIES & MICRO-ANIMATIONS === */
@keyframes pulse { 0%,100%{box-shadow: 0 0 0 0 #FFD43B66;} 50%{box-shadow: 0 0 12px 7px #FFD43B44;} }
.cta.primary { animation: pulse 1.8s infinite ease-in-out; }
/* Fun wiggle for cards on hover */
.card:hover,
.services ul li:hover,
.features ul li:hover {
  animation: wiggle 0.35s cubic-bezier(.36,1.7,.61,1) 1;
}
@keyframes wiggle {
  0% {transform: scale(1) rotate(0deg);}
  25% {transform: scale(1.03) rotate(-2deg);}
  50% {transform: scale(0.97) rotate(2deg);}
  75% {transform: scale(1.025) rotate(-1.3deg);}
  100% {transform: scale(1) rotate(0deg);}
}

/* === ACCESSIBILITY === */
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2px dotted var(--fun-orange);
  outline-offset: 2px;
}

/* === PRINT SUPPORT === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, nav, .cta { display: none !important; }
  .container { max-width: 100vw; }
  .card, .features, .services, .contact, .hero, .testimonials, .section { box-shadow: none !important; background: #fff !important; }
}
