/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F0EDED;
  color: #203356;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  min-width: 320px;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #203356;
  text-decoration: none;
  font-weight: 700;
  transition: color .2s;
}
a:focus, a:hover {
  color: #53C3DA;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 1.875rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 14px; }
h4 { font-size: 1.05rem; margin-bottom: 8px; }
.subheadline { font-size: 1.25rem; font-weight: 600; color: #53C3DA; margin-bottom: 20px; }

/* GENERAL CONTAINERS & LAYOUT --------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(32,51,86,0.09), 0 1.5px 6px rgba(83,195,218,0.12);
}
.text-section {
  background: #F0EDED;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(32,51,86,0.05);
  padding: 32px 22px;
  margin-bottom: 40px;
}
/* FLEXBOX CONTAINERS (MANDATORY) ------------------------ */
.card-container,
.feature-grid,
.content-grid,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .card-content, .feature-item {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(32,51,86,0.06);
  padding: 28px 20px;
  transition: box-shadow .26s, transform .25s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 6px 32px 0 rgba(83,195,218,0.13), 0 2px 12px 0 rgba(32,51,86,0.10);
  transform: translateY(-3px) scale(1.018);
  z-index: 5;
}
.feature-item {
  align-items: flex-start;
  gap: 15px;
  min-width: 260px;
  flex: 1 1 260px;
  background: #F0EDED;
  color: #203356;
  border: none;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 10px 0 20px 0;
  background: #fff;
  color: #203356;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(32,51,86,0.05);
  flex: 1 1 320px;
}
.testimonial-card p {
  font-size: 1.125rem;
  font-weight: 700;
  flex: 1;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #53C3DA;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

/* HERO SECTION -------------------------------------------------- */
.hero {
  background: #203356;
  color: #fff;
  border-radius: 0 0 38px 38px;
  box-shadow: 0 8px 38px 0 rgba(83,195,218,0.08);
  margin-bottom: 60px;
  padding-top: 48px;
  padding-bottom: 56px;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .cta.primary {
  margin-top: 18px;
}

/* BUTTONS & CTAs ------------------------------------------------*/
.cta, .btn, button, .cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 9999px;
  padding: 14px 34px;
  font-size: 1.125rem;
  background: #53C3DA;
  color: #203356;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, transform .15s;
  box-shadow: 0 2px 10px 0 rgba(32,51,86,0.07);
  margin-bottom: 10px;
}
.cta.primary, .btn.primary {
  background: #203356;
  color: #fff;
}
.cta.primary:hover, .btn.primary:hover {
  background: #53C3DA;
  color: #203356;
}
.cta:hover, .btn:hover, .cookie-btn:hover {
  background: #203356;
  color: #53C3DA;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(83,195,218,0.16);
}
.cta:active, .btn:active, .cookie-btn:active {
  transform: scale(0.96);
  box-shadow: 0 1px 3px 0 rgba(32,51,86,0.15);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  font-size: 1.5rem;
  background: transparent;
  color: #203356;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background .17s, color .17s;
}
button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  background: #E6F7FA;
  color: #53C3DA;
}

/* HEADER / NAVIGATION ------------------------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(32,51,86,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 0 0 0;
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 18px 0;
  gap: 24px;
}
header nav a img {
  height: 42px;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 6px 0;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color .17s, border-bottom .13s;
  font-size: 1.08rem;
  color: #203356;
}
header nav ul li a:hover, header nav ul li a.active {
  color: #53C3DA;
  border-bottom: 2.5px solid #53C3DA;
}

.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #203356;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  width: 100vw;
  height: 100vh;
  padding: 40px 24px 24px 24px;
  transition: transform .33s cubic-bezier(0.51,1.06,0.37,1);
  transform: translateX(-105vw);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 24px;
  color: #fff;
  background: #53C3DA;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
  z-index: 202;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover {
  background: #fff;
  color: #203356;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.42rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color .16s, border-bottom .14s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #53C3DA;
  border-bottom: 2.4px solid #53C3DA;
}

/* FOOTER ------------------------------------------------------- */
footer {
  background: #203356;
  color: #fff;
  padding: 40px 0 16px 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -6px 22px 0 rgba(32,51,86,0.12);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 1rem;
}
footer nav a {
  color: #53C3DA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: color .16s;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  margin-top: 8px;
  text-align: center;
  font-size: .98rem;
  color: #fff;
}
.footer-contact small {
  display: block;
  margin-top: 8px;
  font-size: .93rem;
  color: #53C3DA;
}

/* LISTS, LINKS, GENERAL TYPO ----------------------------------- */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 1.02rem;
}
ul li:before, ol li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #53C3DA;
  border-radius: 50%;
  position: absolute;
  left: 6px;
  top: 0.65em;
  transform: translateY(-50%);
}
ul li strong, ol li strong {
  color: #203356;
}

/* SPECIALS: MAP, ICONS ETC ------------------------------------- */
.location-map img {
  width: 90px;
  height: auto;
  border-radius: 12px;
  margin-right: 14px;
}
.location-map p { margin: 0; }
.text-section ul li img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

/* COOKIE CONSENT BANNER ---------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #203356;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px 30px;
  z-index: 9999;
  box-shadow: 0 -3px 18px 0 rgba(32,51,86,0.18);
  font-size: 1.02rem;
  transition: transform .38s cubic-bezier(0.51,1.06,0.37,1);
}
.cookie-banner.hide {
  transform: translateY(105vh);
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 600px;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  font-size: 1.04rem;
  font-weight: 800;
  border: none;
  border-radius: 9999px;
  padding: 10px 26px;
  margin-left: 0;
  margin-right: 0;
  background: #53C3DA;
  color: #203356;
  transition: background .19s, color .14s, transform .12s;
  cursor: pointer;
  outline: none;
}
.cookie-btn.accept {
  background: #53C3DA;
  color: #203356;
}
.cookie-btn.reject {
  background: #fff;
  color: #203356;
  border: 2px solid #53C3DA;
}
.cookie-btn.settings {
  background: transparent;
  color: #53C3DA;
  border: 2px solid #53C3DA;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #203356;
  color: #53C3DA;
  transform: scale(1.04);
}
/* COOKIE MODAL ----------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 20001;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,51,86,0.43);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .21s cubic-bezier(.6,.2,.25,1.05);
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 410px;
  width: 98%;
  color: #203356;
  padding: 38px 32px 30px 32px;
  box-shadow: 0 7px 28px 0 rgba(32,51,86,0.18);
  animation: cookieModalIn .51s cubic-bezier(0.51,1.06,0.37,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookieModalIn {
  0% { opacity:0; transform:scale(0.92) translateY(56px); }
  100% { opacity:1; transform:scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.29rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #203356;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 2rem;
  color: #203356;
  background: #F0EDED;
  border-radius: 50%;
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .17s;
}
.cookie-modal-close:hover {
  background: #53C3DA;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 9px 0;
  font-weight: 700;
  font-size: 1.08rem;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-category .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E8E8E8;
  border-radius: 26px;
  transition: background .17s;
}
.cookie-category .switch input:checked + .slider {
  background: #53C3DA;
}
.cookie-category .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .16s;
  box-shadow: 0 0.5px 8px 0 rgba(32,51,86,0.08);
}
.cookie-category .switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-category .slider.disabled {
  opacity: 0.42;
  cursor: not-allowed;
  background: #F0EDED;
}
.cookie-category label {
  font-size: .97rem;
}
/* THEMATIC CARD/FEATURE RESPONSES ----------------------------- */
@media (max-width: 1100px) {
  .feature-grid, .card-container, .content-grid, .card-grid {
    gap: 20px;
  }
  .feature-item,
  .card {
    min-width: 220px;
    flex-basis: 47%;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98%;
    padding: 0 10px;
  }
  .feature-grid, .card-container, .content-grid, .card-grid {
    gap: 16px;
  }
  .feature-item,
  .card {
    min-width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.97rem;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.10rem; }
  .section {
    margin-bottom: 36px;
    padding: 24px 6px 24px 6px;
    border-radius: 20px;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    padding-top: 26px;
  }
  .card, .feature-item, .testimonial-card {
    padding: 16px 10px;
    border-radius: 13px;
  }
  .feature-item img {
    width: 32px; height: 32px;
  }
  .footer-contact { font-size: .91rem; }
  .text-image-section, .location-map {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .content-wrapper, .text-section {
    padding: 14px 4px;
    border-radius: 10px;
    gap: 14px;
  }
  .testimonial-card {
    gap: 10px;
    font-size: 0.99rem;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 20px;
    background: #53C3DA;
    color: #203356;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 2.22rem;
    z-index: 200;
    border: none;
    transition: background .16s, color .16s;
  }
  .mobile-menu {
    display: flex;
    transform: translateX(-105vw);
    transition: transform .33s cubic-bezier(0.51,1.06,0.37,1);
  }
  header nav ul {
    display: none;
  }
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 26px; padding: 18px 9px 18px 9px; font-size: .97rem; }
  .cookie-banner-content { max-width: initial; }
  .cookie-banner-actions { gap: 8px; }
}
@media (max-width: 470px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.04rem; }
  .footer-contact { font-size: .80rem; }
}

/* ANIMATIONS & MICRO-INTERACTIONS ----------------------------- */
.card, .feature-item, .testimonial-card, .section, .hero, .content-wrapper, .cookie-banner, .cookie-modal {
  transition: box-shadow .24s, background .22s, color .17s, transform .17s;
}
button:focus-visible, .cookie-btn:focus-visible, a:focus-visible {
  outline: 2.5px solid #53C3DA;
  outline-offset: 2px;
}

/* MISC AND HELPERS -------------------------------------------- */
::-webkit-scrollbar { width: 9px; background: #F0EDED; }
::-webkit-scrollbar-thumb { background: #53C3DA; border-radius: 8px; }

/*********************************************
 * UTILITY CLASSES & SPACING SYSTEM
 *********************************************/
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.text-center { text-align: center !important; }

/*********************************************
 * PRINT FRIENDLY
 *********************************************/
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { color: #000 !important; background: #fff !important; }
}
