/* 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, main, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: border-box;
}
body {
  line-height: 1.7;
  background: #F5F7FA;
  color: #22334D;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 20px;
}
a {
  color: #22334D;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6DB0C6;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #22334D;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #22334D;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.22;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: #22334D;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 32px;
}
.map-placeholder {
  margin-top: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,51,77,0.07);
  display: flex;
  align-items: center;
  gap: 16px;
}
ul li {
  margin-bottom: 8px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #22334D;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(34,51,77,0.06);
  z-index: 1000;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 22px 20px;
  gap: 18px;
}
.logo {
  height: 44px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #6DB0C6;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  background: #6DB0C6;
  color: #22334D;
  border-radius: 48px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(34,51,77,0.07);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.17s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1a2640;
  color: #fff;
  box-shadow: 0 4px 28px 0 rgba(34,51,77,0.11);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: #6DB0C6;
  color: #22334D;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2500;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22334D;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #22334D;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.88,-0.07,.11,1.03);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 18px;
  cursor: pointer;
  z-index: 3250;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 8px 0;
  border-radius: 8px;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6DB0C6;
  color: #22334D;
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: #22334D;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 42vh;
  padding: 66px 0 48px 0;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero h1,
.hero p {
  color: #fff;
  max-width: 700px;
  margin-bottom: 18px;
}
.hero .btn-primary {
  margin-top: 8px;
  box-shadow: 0 2px 20px 0 rgba(34,51,77,0.11);
}

/* FEATURES FLEX LAYOUT */
.features {
  background: #fff;
  border-radius: 30px 30px 0 0;
}
.features .container {
  padding-top: 38px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F5F7FA;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 2px 16px 0 rgba(34,51,77,0.06);
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.feature-item img {
  height: 46px;
  width: 46px;
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 6px 30px 0 rgba(34,51,77,0.16);
  background: #fff;
  transform: translateY(-6px) scale(1.03);
}

/* TESTIMONIAL CARDS */
.testimonials {
  background: #F5F7FA;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(34,51,77,0.09);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 44px 0 rgba(109,176,198,0.15);
  transform: translateY(-2px) scale(1.012);
}
.testimonial-content p {
  color: #22334D;
  font-size: 1.05rem;
  line-height: 1.7;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #6DB0C6;
  margin-top: 8px;
}
.testimonial-meta span:first-child {
  color: #FFD700;
  font-size: 1.15rem;
}

/* CTA SECTION */
.cta {
  background: #6DB0C6;
  border-radius: 27px;
  color: #22334D;
  box-shadow: 0 1px 8px 0 rgba(109,176,198,0.13);
  display: flex;
  align-items: center;
  padding: 52px 0 48px 0;
  margin-bottom: 60px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta h2, .cta p {
  color: #22334D;
}

/* BLOG ARTICLE & CATEGORIES */
.blog-category-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.category-link {
  background: #6DB0C6;
  color: #22334D;
  border-radius: 20px;
  padding: 5px 14px;
  margin-right: 3px;
  margin-bottom: 3px;
  font-weight: 700;
  transition: background 0.17s, color 0.19s;
}
.category-link:hover, .category-link:focus {
  background: #22334D;
  color: #fff;
}
.blog-articles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-articles article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(34,51,77,0.08);
  padding: 28px 22px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.blog-articles article:hover {
  box-shadow: 0 6px 22px 0 rgba(109,176,198,0.11);
  transform: translateY(-2px) scale(1.01);
}
.popular-posts {
  background: #6DB0C6;
  color: #22334D;
  padding: 22px 16px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.popular-posts h3 {
  color: #22334D;
  margin-bottom: 10px;
}
.popular-posts ul {
  list-style: disc inside;
  margin-left: 8px;
}
.popular-posts a {
  color: #22334D;
  font-weight: 700;
}
.popular-posts a:hover, .popular-posts a:focus {
  color: #fff;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 1px 10px 0 rgba(34,51,77,0.08);
}
.contact-details img {
  width: 21px;
  margin-right: 8px;
  vertical-align: middle;
}

/* FOOTER */
footer {
  background: #22334D;
  color: #fff;
  padding: 38px 0 32px 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav nav a {
  color: #6DB0C6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  margin-top: 8px;
  margin-bottom: 8px;
}
.footer-contact p {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.05);
  transition: opacity 0.17s, filter 0.15s;
}
.footer-social a:hover img {
  opacity: 0.84;
  filter: grayscale(0) brightness(1.23);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  background: #22334D;
  color: #fff;
  box-shadow: 0 -3px 16px 0 rgba(34,51,77,0.23);
  padding: 22px 12px;
  transition: transform 0.3s, opacity 0.25s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 260px;
  font-size: 1rem;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  padding: 9px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.btn-cookie.accept {
  background: #6DB0C6; color: #22334D;
}
.btn-cookie.reject {
  background: #FFD700; color: #22334D;
}
.btn-cookie.settings {
  background: transparent;
  border: 2px solid #6DB0C6;
  color: #6DB0C6;
  padding: 8px 22px;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #22334D;
  color: #fff;
  border-color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,51,77,0.79);
  z-index: 5050;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #22334D;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(109,176,198,0.23);
  width: 92vw;
  max-width: 420px;
  padding: 38px 32px 28px 32px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #6DB0C6;
  cursor: pointer;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-pref-item label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-pref-item input[type=checkbox] {
  accent-color: #6DB0C6;
  width: 22px;
  height: 22px;
}
.cookie-pref-essential {
  color: #aaa;
  font-size: 0.98rem;
  font-weight: 500;
  margin-top: 2px;
}

/* CARD CONTAINER & FLEX SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 1px 12px 0 rgba(34,51,77,0.08);
  border-radius: 20px;
  background: #fff;
  padding: 28px 22px;
  transition: box-shadow 0.17s;
}
.card:hover {
  box-shadow: 0 5px 32px 0 rgba(109,176,198,0.14);
}
.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;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING BETWEEN MAJOR SECTIONS & CARDS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-of-type {
  margin-bottom: 0;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
  .footer-nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-contact {
    max-width: 290px;
  }
  .features .container {
    padding-top: 20px;
  }
}
@media (max-width: 900px) {
  .footer-nav {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 18px 12px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    min-height: 19vh;
    padding: 36px 0 30px 0;
    background-position: center;
  }
  .features {
    border-radius: 18px 18px 0 0;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: left;
    margin-bottom: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 20px 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cta {
    padding: 32px 0 32px 0;
    border-radius: 18px;
  }
  section {
    margin-bottom: 38px;
    padding: 24px 7px;
  }
  .btn-primary, .btn-cookie {
    width: 100%;
    padding: 12px 0;
    font-size: 1.09rem;
  }
  .cookie-modal {
    padding: 26px 11px 18px 11px;
    max-width: 96vw;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .footer-contact p {
    font-size: 0.98rem;
  }
  .feature-item, .card, .testimonial-card {
    padding: 16px 10px;
  }
  .cta {
    padding: 18px 0 18px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 7px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.btn-primary, .btn-cookie {
  transition: background 0.17s, color 0.15s, transform 0.14s, box-shadow 0.15s;
}
.btn-primary:active, .btn-cookie:active {
  transform: scale(0.96);
  box-shadow: 0 1px 8px 0 rgba(109,176,198,0.13);
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  transition: box-shadow 0.18s, transform 0.13s;
}

/* MODAL AND BANNER ANIMATION */
.cookie-modal {
  animation: cookiePopIn 0.33s cubic-bezier(.22,1.34,.76,1.05);
}
@keyframes cookiePopIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* MISCELLANEOUS */
::-webkit-input-placeholder { color: #adb9ca; }
::-moz-placeholder { color: #adb9ca; }
:-ms-input-placeholder { color: #adb9ca; }
::placeholder { color: #adb9ca; }

/* REMOVE GRID AND COLUMN FALLBACKS */
/* No grid/column CSS properties used for full flexbox compliance */
