/* =================== CSS RESET & BASE =================== */
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, menu, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f6f7fb;
  color: #2C3E50;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.4;
  color: inherit;
}
a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1a4165;
}
ul, ol {
  list-style: disc inside;
}
@media (max-width: 768px) {
  ul, ol { padding-left: 18px; }
}

/* =============== TYPOGRAPHY & HEADINGS =================== */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h1, .hero h1 { font-size: 2.8rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #274160;
}
@media (min-width: 768px) {
  h2 { font-size: 2rem; }
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #2C3E50;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #2C3E50;
}
p {
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  p { font-size: 1.10rem; }
}
strong { font-weight: 700; }

/* ================ CONTAINERS & SECTIONS ================== */
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.06);
  padding: 36px 22px;
}
@media (min-width: 992px) {
  .content-wrapper {
    padding: 46px 38px;
    gap: 32px;
  }
}
.text-section {
  background: #f6f7fb;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
/* Flexbox content grid */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* ============ HEADER & NAVIGATION (Desktop & Mobile) ============ */
header {
  background: #2C3E50;
  box-shadow: 0 2px 16px rgba(44,62,80,0.08);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #85C1E9;
  color: #2C3E50;
}
.cta.primary {
  background: #85C1E9;
  color: #2C3E50;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  padding: 10px 28px;
  border-radius: 28px;
  text-align: center;
  font-size: 1.1rem;
  margin-left: 20px;
  box-shadow: 0 2px 7px rgba(133,193,233,0.15);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #6ea8d8;
  color: #fff;
  box-shadow: 0 6px 18px rgba(44,62,80,0.09);
}
.cta {
  display: inline-block;
  background: #2C3E50;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 6px rgba(44,62,80,0.07);
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #85C1E9;
  color: #2C3E50;
}

/* =========== MOBILE MENU BUTTON & MENU (burger/overlay) =========== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  z-index: 1100;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.15);
  color: #2C3E50;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #85C1E9;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(44,62,80,0.94);
  transform: translateX(-100vw);
  z-index: 1200;
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 0 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 8px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #85C1E9;
  color: #2C3E50;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  padding: 30px 36px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0 10px 0;
  border: none;
  border-radius: 0;
  line-height: 1.2;
  transition: color 0.15s, background 0.15s;
  width: 100%;
  cursor: pointer;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #85C1E9;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 991px) {
  header nav, .cta.primary {
    display: none !important;
  }
}

/* ============ HERO SECTION ============ */
.hero {
  background: linear-gradient(92deg, #f6f7fb 70%, #85C1E9 140%);
  padding: 48px 0 44px 0;
  box-shadow: 0 1px 14px rgba(44,62,80,.04);
  border-bottom-left-radius: 60px 42px;
  border-bottom-right-radius: 60px 42px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  gap: 18px;
}
.hero p {
  color: #274160;
}
.hero .cta, .hero .cta.primary {
  margin-top: 12px;
}

/* ========== FEATURE & CARD LAYOUTS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(44,62,80,0.09);
  transform: translateY(-2px) scale(1.011);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 24px 22px 18px 22px;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(133,193,233,0.08), 0 0.5px 0.5px rgba(44,62,80,0.04);
  min-width: 0;
  width: 100%;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(133,193,233,0.14);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-card p {
  color: #2C3E50;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.7;
}
.testimonial-card span {
  font-weight: 600;
  color: #274160;
  font-size: 0.98rem;
}
@media (min-width: 768px) {
  .testimonial-card {
    width: 32%;
    min-width: 276px;
  }
  .section .content-wrapper {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }
}

/* ========== MAP EMBED ========== */
.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F9E79F;
  padding: 13px 18px;
  border-radius: 11px;
  box-shadow: 0 1px 7px rgba(44,62,80,0.11);
  margin: 18px 0;
  color: #2C3E50;
}
.map-embed img {
  width: 32px; height: 32px;
  object-fit: contain;
}

/* ========== FOOTER ========== */
footer {
  background: #2C3E50;
  color: #fff;
  padding: 48px 0 18px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 16px rgba(44,62,80,0.05);
  border-top-left-radius: 38px 26px;
  border-top-right-radius: 38px 26px;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav nav a {
  color: #fff;
  opacity: 0.98;
  transition: color 0.13s, opacity 0.13s;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 0;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #85C1E9;
  opacity: 1;
}
.contact-info {
  font-size: 0.96rem;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #cad2e2;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: #85C1E9;
  margin-top: 4px;
}
.social-media img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  filter: none;
}
.footer-tagline {
  margin-top: 18px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #85C1E9;
  font-weight: 600;
}
@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    gap: 55px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-tagline {
    align-self: flex-end;
    margin-left: auto;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #2C3E50;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(44,62,80,0.17);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 24px 12px;
  font-size: 1.05rem;
  transition: transform 0.28s cubic-bezier(.65,.05,.36,1);
}
@media (min-width: 520px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    padding: 20px 34px;
    font-size: 1.08rem;
  }
}
.cookie-banner button {
  margin-right: 12px;
}
.cookie-btn {
  border-radius: 24px;
  border: none;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-right: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  cursor: pointer;
  outline: none;
  margin-bottom: 4px;
}
.cookie-btn.accept {
  background: #85C1E9;
  color: #2C3E50;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #6ea8d8;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #2C3E50;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9E79F;
  color: #2C3E50;
}
.cookie-btn.settings {
  background: transparent;
  color: #F9E79F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F9E79F;
  color: #2C3E50;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,62,80,0.85);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s cubic-bezier(.42,0,.56,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  color: #2C3E50;
  border-radius: 16px;
  box-shadow: 0 8px 34px rgba(44,62,80, 0.21);
  max-width: 400px;
  width: 94vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: fadeInModal 0.35s cubic-bezier(.42,0,.56,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #2C3E50;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.05rem;
  color: #274160;
}
.cookie-category input[type=checkbox] {
  accent-color: #85C1E9;
  width: 19px; height: 19px;
  border-radius: 7px;
  margin-left: 18px;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 11px; right: 14px;
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: #274160;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.14s;
}
.cookie-modal .close-btn:hover {
  background: #F9E79F;
  color: #2C3E50;
}

/* ========== UTILS & GENERIC FLEX LAYOUTS ========== */
.d-flex        { display: flex; }
.flex-column   { flex-direction: column; }
.flex-row      { flex-direction: row; }
.align-center  { align-items: center; }
.align-start   { align-items: flex-start; }
.justify-center{ justify-content: center; }
.justify-between{ justify-content: space-between; }
.gap-20        { gap: 20px; }
.gap-24        { gap: 24px; }
.mt-24         { margin-top: 24px; }
.mt-40         { margin-top: 40px; }

/* ========== MISC INTERACTIONS & MICRO-ANIMATIONS ========== */
button, .cta, .cta.primary, a {
  transition: background 0.16s, box-shadow 0.17s, color 0.16s, transform 0.16s;
}
button:focus, .cta.primary:focus, .cta:focus {
  outline: 2px solid #85C1E9;
  outline-offset: 2px;
}

/* ========== RESPONSIVE SPACING & LAYOUTS ========== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    padding: 16px 8px;
  }
  footer .container {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .testimonial-card {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero h1, h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.12rem;
  }
}

/* ============ PRINT & SELECTION STYLES ============ */
::selection {
  background: #F9E79F;
  color: #2C3E50;
}

/* =========== END OF CSS =========== */
