/* =====================
  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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4EDED;
  color: #253053;
  min-height: 100vh;
  font-size: 16px;
}
a {
  color: #307D8C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1.3,.6,1);
}
a:hover, a:focus {
  color: #253053;
  text-decoration: underline;
}
ul, ol {
  margin-left: 18px;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
button {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* =====================
  Typography, Headings
====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  color: #253053;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 0.95rem;
}
.subheadline {
  font-size: 1.15rem;
  font-weight: 400;
  color: #307D8C;
  margin-bottom: 20px;
}
p {
  margin: 0 0 18px 0;
}
strong, b {
  font-weight: bold;
}
blockquote {
  font-style: italic;
  color: #307D8C;
  background: #e1f0f6;
  padding: 18px 28px;
  border-left: 5px solid #307D8C;
  border-radius: 16px 2px 20px 6px;
  margin: 0 0 18px;
  font-size: 1.07rem;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}

/* =======================
  Brand Colors as vars
======================== */
:root {
  --primary: #253053;
  --secondary: #307D8C;
  --accent: #F4EDED;
  --background-vivid: #fff6e7;
  --brand-yellow: #ffd966;
  --brand-orange: #ffa87c;
  --brand-pink: #f96387;
  --brand-green: #74d3ae;
  --brand-purple: #a98ff3;
}

/* =======================
  Container, Wrapper
======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

/* =====================
  Header, Navigation
====================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(37,48,83,0.07);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 0;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
}
.main-nav a {
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav a.cta-primary {
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-green), var(--brand-pink));
  background-size: 180% 180%;
  color: #253053;
  font-weight: 700;
  box-shadow: 0 2px 14px 0 rgba(249,99,135,0.08);
  padding: 8px 21px;
  letter-spacing: 0.07em;
  border-radius: 28px;
  transition: background-position 0.35s, color 0.18s, box-shadow 0.15s;
  border: none;
}
.main-nav a.cta-primary:hover, 
.main-nav a.cta-primary:focus {
  background-position: right center;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(37,48,83,0.13);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(100deg, var(--brand-green), var(--brand-orange));
  color: #253053;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  position: absolute;
  right: 28px;
  top: 16px;
  z-index: 1101;
  box-shadow: 0 4px 18px 0 rgba(37,48,83,0.13);
  border: 2px solid #ffd966;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #fff;
  background: #253053;
}

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #253053ee;
  z-index: 1100;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.19,1,.22,1), opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0vw);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-yellow));
  color: #253053;
  position: absolute;
  top: 18px;
  right: 26px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  z-index: 1120;
  transition: background .2s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #f96387;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 86px;
}
.mobile-nav a {
  font-family: 'Rubik', Arial, sans-serif;
  color: #ffd966;
  font-size: 1.23rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 25px;
  transition: color .15s, background .2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-pink);
  color: #fff;
}

/* =====================
  Responsive Nav
====================== */
@media (max-width: 1000px) {
  .main-nav a:not(:first-child) {
    font-size: 0.98rem;
    padding: 5px 8px;
  }
}
@media (max-width: 870px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 5px;
    font-size: 0.99rem;
  }
}
@media (max-width: 790px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 4px;
  }
}
@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  header {
    min-height: 65px;
  }
}

/* =====================
  Hero Section
====================== */
.hero {
  background: linear-gradient(101deg, var(--brand-yellow), var(--background-vivid) 65%, var(--brand-pink) 85%);
  padding: 40px 0 48px 0;
  margin-bottom: 0;
  border-bottom-left-radius: 64px 30px;
  border-bottom-right-radius: 24px 54px;
  box-shadow: 0 7px 32px 0 rgba(49,125,140,0.09);
}
.hero h1 {
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 2.6rem;
  color: #253053;
  margin-bottom: 16px;
  text-shadow: 0 3px 24px #fffbbb77, 1px 1px 0 #c9eedd11;
  letter-spacing: -0.5px;
}
.hero .subheadline {
  color: #307D8C;
  font-size: 1.28rem;
  margin-bottom: 23px;
  text-align: center;
}
.hero .cta-primary {
  margin-top: 14px;
}

/* =====================
  CTA Button
====================== */
.cta-primary {
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-yellow), var(--brand-green));
  background-size: 300% 300%;
  color: #253053;
  border: none;
  border-radius: 34px;
  padding: 14px 38px;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 5px 19px -2px #f9638722, 0 2px 8px 0 #74d3ae14;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background-position 0.35s, box-shadow .20s, color .13s;
}
.cta-primary:hover, .cta-primary:focus {
  background-position: right center;
  color: #fff;
  box-shadow: 0 10px 26px -2px #25305326;
}

/* =====================
  Section, Layout Flex
====================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =======================
  Card Container Patterns
======================== */
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 #25305312;
  margin: 16px 0 26px 0;
  flex: 1 1 330px;
  min-width: 220px;
  border-left: 7px solid var(--brand-green);
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 26px 0 #307d8c21;
  transform: translateY(-2px) scale(1.015);
  border-left: 7px solid var(--brand-pink);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px 38px 12px 24px;
  box-shadow: 0 2px 13px 0 #307d8c18;
  padding: 28px 20px 24px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.20s, transform 0.15s;
}
.feature-item img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 14px #307d8c24);
}
.feature-item h3 {
  color: #307D8C;
  font-size: 1.33rem;
  font-family: 'Rubik', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px 0 #ffd96633;
  transform: translateY(-2px) scale(1.019);
}

/* Features grid specifically for home/index */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 22px;
  width: 100%;
}

/* Service Cards */
.service-list, .service-cards, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: linear-gradient(105deg, #fff 70%, #f4eded 100%);
  border-radius: 18px 10px 31px 20px;
  box-shadow: 0 2px 11px 0 #a98ff33a, 0 1.5px 4px 0 #74d3ae26;
  padding: 28px 24px 24px 22px;
  min-width: 230px;
  margin-bottom: 20px;
  flex: 1 1 258px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: background .3s, box-shadow 0.18s, transform .15s;
  border-top: 4px solid var(--brand-yellow);
}
.service-card .price {
  color: #f96387;
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  margin-top: 16px;
}
.service-card:hover {
  background: linear-gradient(100deg, #fff0f7 85%, #ffd966 100%);
  box-shadow: 0 8px 33px 0 #f963877a;
  transform: scale(1.03) translateY(-2px);
}

/**** About / Information sections ****/
.section.about, .about {
  background: #fffbe2;
  border-radius: 30px;
  box-shadow: 0 3px 17px 0 #307d8c11;
}

/**** List, Timeline, Fact Highlights ****/
.feature-timeline {
  margin: 9px 0 28px 28px;
  list-style-type: decimal;
}
.impact-facts, .amazing-facts, .quick-facts, .scientific-highlights, .interactivity-highlights {
  margin: 24px 0 10px 0;
  background: #eaf4e7;
  border-radius: 16px 23px 8px 19px;
  padding: 20px 18px 13px 26px;
  color: #253053;
}
.benefits-list, .benefit-cards {
  margin: 14px 0 14px 20px;
  padding-left: 10px;
  list-style: circle inside;
  color: #307d8c;
  font-size: 1.01rem;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 17px 0 15px 0;
}
.feature-icons img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 3px 8px #25305317);
}
.inventor-profiles {
  margin-top: 26px;
  margin-bottom: 10px;
  background: #fff6eb;
  border-radius: 16px;
  padding: 12px 20px 13px 20px;
}
/**** Brand philosophy ****/
.brand-philosophy {
  background: #74d3ae22;
  border-left: 5px solid #74d3ae;
  border-radius: 8px 20px 12px 20px;
  padding: 16px 22px;
  margin: 12px 0 0 0;
  color: #307D8C;
}
.statistic-highlights {
  background: #25305313;
  border-radius: 16px 19px 8px 17px;
  padding: 14px 24px;
  color: #253053;
  margin: 22px 0 0 0;
  font-size: 1.04rem;
}
/**** Step Explainer/Timeline ****/
.step-by-step-explainer {
  margin: 25px 0 0 0;
  background: #e1f0f6;
  border-radius: 14px;
  padding: 15px 18px 10px 18px;
  color: #253053;
}

/**** Pricing Table & Details ****/
.pricing-table {
  margin: 40px 0 0 0;
  width: 100%;
}
.pricing-table table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 9px 0 #25305314;
  font-size: 1.08rem;
}
.pricing-table caption {
  background: #253053;
  color: #ffd966;
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: bold;
  padding: 10px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 10px;
  text-align: left;
}
.pricing-table th {
  background: #f4eded;
  font-weight: 700;
  color: #253053;
}
.pricing-table tr {
  border-bottom: 1px solid #edf3eb;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  background: #fff;
}

/**** Contact, FAQ, Social, Newsletter ****/
.contact, .faq-section, .faq {
  background: #fff6e7;
  border-radius: 24px;
  box-shadow: 0 2px 13px 0 #ffd96622;
  padding: 30px 22px 18px 20px;
  margin-bottom: 30px;
}
ul {
  margin: 8px 0 18px 24px;
  list-style: disc inside;
}
ol {
  margin: 9px 0 18px 29px;
  list-style: decimal inside;
}
.social-links, .footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-links a, .footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px #f9638722;
  transition: background 0.2s, transform 0.15s;
}
.social-links a:hover, .footer-social a:hover {
  background: #ffd966;
  transform: scale(1.12);
}

/**** Footer ****/
footer {
  background: linear-gradient(100deg, #253053 88%, #307d8c 100%);
  color: #fff;
  padding: 42px 0 15px 0;
  font-size: 1.07rem;
  margin-top: 54px;
  box-shadow: 0 -4px 19px 0 #00000013;
}
footer .container {
  padding-bottom: 0;
}
.footer-main {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-main img {
  max-width: 62px;
  margin-bottom: 7px;
}
.footer-menu, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-menu a, .footer-legal a {
  color: #ffd966;
  font-weight: 500;
  padding: 3px 4px;
  border-radius: 8px;
  font-family: 'Rubik', Arial, sans-serif;
  transition: background 0.2s, color 0.13s;
}
.footer-menu a:hover, .footer-legal a:hover {
  background: #fffbe2;
  color: #253053;
}
.footer-contact, .footer-newsletter {
  margin-top: 17px;
  font-size: 0.97rem;
}
.footer-contact h4, .footer-newsletter h4 {
  color: #ffd966;
  font-family: 'Rubik', Arial;
  font-size: 1.09rem;
}
.footer-contact ul {
  margin: 5px 0 2px 0;
  list-style: none;
  padding: 0;
}
.footer-contact li, .footer-contact li img {
  vertical-align: middle;
  margin: 2px 0;
  color: #fff;
  font-size: 1em;
}
.footer-contact li img {
  margin-right: 7px;
  width: 19px;
  height: 19px;
  filter: brightness(1.3);
}
.footer-newsletter p {
  color: #ffd966;
  margin-top: 5px;
  letter-spacing: 0.01em;
  font-size: 0.99em;
}

/* =====================
  Legal & Cookie Content
====================== */
.legal {
  background: #fff;
  border-radius: 32px 20px 18px 24px;
  padding: 40px 26px 28px 26px;
  box-shadow: 0 2px 16px #307d8c13;
  margin-bottom: 36px;
}
.legal h1, .legal h2 {
  margin-top: 12px;
  color: #253053;
}
.legal a {
  color: #f96387;
  text-decoration: underline;
}

/* =====================
  Cookie Consent Banner
====================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 13000;
  background: #253053dc;
  color: #fff;
  padding: 30px 12px 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  font-size: 1.04em;
  box-shadow: 0 -2px 12px #307d8c33;
  transition: transform .36s cubic-bezier(.43,1,.26,1), opacity .23s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 25px;
  border-radius: 22px;
  font-size: 1em;
  border: none;
  font-family: 'Rubik', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 2px 8px #ffd96655;
  transition: background 0.19s, color 0.16s, box-shadow .15s;
}
.cookie-banner .accept {
  background: #ffd966;
  color: #253053;
}
.cookie-banner .accept:hover {
  background: #74d3ae;
  color: #fff;
}
.cookie-banner .reject {
  background: #f96387;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #253053;
  color: #ffd966;
}
.cookie-banner .settings {
  background: #fffbe2;
  color: #253053;
}
.cookie-banner .settings:hover {
  background: #a98ff3;
  color: #fff;
}

/**** Cookie Preferences Modal ****/
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #25305399;
  z-index: 14000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 22px 24px 17px 24px;
  min-width: 335px;
  max-width: 94vw;
  box-shadow: 0 8px 40px 0 #25305377;
  padding: 40px 32px 15px 32px;
  position: relative;
  color: #253053;
  font-size: 1.13em;
}
.cookie-modal-content h3 {
  font-family: 'Rubik', Arial, sans-serif;
  font-size: 1.30em;
  margin-bottom: 13px;
  color: #253053;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  right: 20px; top: 20px;
  width: 40px; height: 40px;
  font-size: 1.4rem;
  border-radius: 50%;
  background: #ffd966;
  color: #253053;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: #f96387;
  color: #fff;
}
.cookie-modal-content ul {
  margin: 15px 0 12px 8px;
  padding-left: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.cookie-category label {
  margin-left: 13px;
  font-weight: 600;
  font-size: 0.98em;
  color: #307d8c;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #ffd966;
}
.cookie-note {
  margin: 7px 0 19px 0;
  font-size: 0.97em;
  color: #307d8c;
}
.cookie-modal-content .cookie-modal-buttons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
  justify-content: flex-end;
}
.cookie-modal-content .accept {
  background: #ffd966;
  color: #253053;
  padding: 10px 26px;
  border-radius: 25px;
  border: none;
  font-weight: 700;
  box-shadow: 0 2px 8px #ffd96631;
}
.cookie-modal-content .accept:hover {
  background: #f96387;
  color: #fff;
}
.cookie-modal-content .cancel {
  background: #fffbe2;
  color: #253053;
  padding: 10px 18px;
  border-radius: 25px;
  border: none;
  font-weight: 700;
}
.cookie-modal-content .cancel:hover {
  background: #307D8C;
  color: #fff;
}

/* =======================
  Animations & Microinteractions
======================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none; }
}

.hero h1, .hero .cta-primary, .hero .subheadline {
  animation: fadeInUp .7s cubic-bezier(.37,1.4,.19,.92);
}
.feature-item, .feature-grid .feature-item {
  animation: fadeInUp .8s cubic-bezier(.37,1.4,.19,.92);
}
.cta {
  animation: fadeInUp .82s cubic-bezier(.41,1.42,.21,.94);
}

/* =====================
  Responsive Styles
====================== */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.05rem;
  }
  .feature-grid, .service-list, .service-cards, .workshop-list, .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .service-card {
    min-width: 200px;
    max-width: 100%;
    padding: 26px 17px 20px 17px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  section, .section {
    padding: 16px 6px;
  }
  .feature-item,
  .service-card {
    padding: 14px 7px 12px 12px;
  }
  .legal {
    padding: 19px 4vw 13px 4vw;
    margin-bottom: 20px;
    border-radius: 17px;
  }
  .content-wrapper {
    padding: 0 0;
  }
  .footer-main {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer-contact, .footer-newsletter {
    margin-top: 11px;
    font-size: 0.92rem;
  }
  .footer-newsletter p {
    font-size: 0.96em;
  }
}
@media (max-width: 520px) {
  .footer-menu, .footer-legal {
    flex-direction: column;
    gap: 1px;
    font-size: 0.98rem;
  }
  .footer-main, .footer-contact {
    font-size: 0.94rem;
  }
  .cookie-modal .cookie-modal-content {
    padding: 17px 3vw 10px 3vw;
    min-width: 95vw;
  }
}
@media (max-width: 410px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92em;
  }
}

/* =======================
  Misc Utility
======================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-8 { gap: 8px !important; }
.gap-20 { gap: 20px !important; }

/* =======================
  Accessibility
======================== */
:focus-visible {
  outline: 3px solid #ffd966;
  outline-offset: 2px;
}

/* =======================
  Hide visually utilities
======================== */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
