/* CSS RESET + NORMALIZATION */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  font: inherit;
  color: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #22305A;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #22305A;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #22305A;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.125rem;
  color: #22305A;
  margin-bottom: 24px;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/*******************
  CONTAINER SECTION
*******************/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

/*******  HEADER  *******/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,48,90,.03);
  position: sticky;
  top: 0; z-index: 20;
  width: 100vw;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  margin-left: 16px;
  align-items: center;
}
.main-nav a {
  color: #22305A;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  padding: 6px 4px;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f5f7fa;
  color: #1CA9B2;
}
.cta {
  padding: 12px 32px;
  border-radius: 30px;
  background: none;
  border: 1.5px solid transparent;
  font-family: 'Montserrat',sans-serif;
  font-weight: bold;
  display: inline-block;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(34,48,90,.05);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.25s;
  margin-left: 16px;
  letter-spacing: 0.01em;
}
.cta.primary {
  background: #22305A;
  color: #fff;
  border-color: #22305A;
}
.cta.primary:hover, .cta.primary:focus {
  background: #1CA9B2;
  border-color: #1CA9B2;
  color: #fff;
}
.cta.accent {
  background: #1CA9B2;
  color: #fff;
  border-color: #1CA9B2;
}
.cta.accent:hover, .cta.accent:focus {
  background: #22305A;
  border-color: #22305A;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: #22305A;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #1CA9B2;
}
/****** MOBILE MENU *****/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: rgba(34,48,90,0.96);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.45,0.02,0.29,1.03);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(28,169,178,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10vh;
  gap: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat',sans-serif;
  border-radius: 6px;
  padding: 14px 32px;
  transition: background 0.12s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(28,169,178,0.18);
  color: #1CA9B2;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
  .cta {
    padding: 10px 24px;
    font-size: 0.98rem;
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/************ GLOBAL SECTIONS & LAYOUT *************/
main {
  flex: 1 0 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 40px rgba(34,48,90,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
}
/***************** FLEXBOX GRID CLASSES ********************/
.card-container, .card-grid, .feature-grid, .categories-list, .services-list, .services-highlight-grid, .service-types-grid, .feature-list, .benefit-list, .quick-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,48,90,.07);
  padding: 32px 24px;
  min-width: 250px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 44px rgba(28,169,178,0.13);
  transform: translateY(-2px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-grid li, .feature-list li, .benefit-list li, .categories-list li, .services-list li, .quick-benefits li {
  min-width: 180px;
  margin-bottom: 0;
  background: #fff;
  padding: 22px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(34,48,90,0.05);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.21s;
}
.feature-grid li:hover, .feature-list li:hover, .categories-list li:hover, .services-list li:hover, .quick-benefits li:hover {
  box-shadow: 0 6px 28px rgba(28,169,178,0.10);
}
.feature-grid img, .feature-list img, .categories-list img, .service-types-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.service-types-grid, .services-highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-types-grid li, .services-highlight-grid li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(34,48,90,0.06);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 0;
  min-width: 200px;
  transition: box-shadow 0.19s;
}
.service-types-grid li:hover, .services-highlight-grid li:hover {
  box-shadow: 0 8px 38px rgba(28,169,178,0.12);
}
.price {
  margin-top: 8px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.05rem;
  color: #1CA9B2;
  font-weight: 700;
}
.benefit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.benefit-icons > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7fafc;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
}
/**** Consultations & Steps ****/
.consultation-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.consultation-steps li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(34,48,90,0.08);
  flex: 1 1 240px;
  padding: 20px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.consultation-steps img {
  width: 32px;
  height: 32px;
}
/********* CARDS & TESTIMONIALS **********/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 11px;
  background: #f6fafd;
  box-shadow: 0 3px 20px rgba(34,48,90,0.08);
  margin-bottom: 22px;
  color: #22305A;
  font-size: 1.05rem;
  transition: box-shadow 0.2s, background 0.15s;
}
.testimonial-card blockquote {
  font-size: 1.09rem;
  font-style: italic;
  color: #22305A;
  flex: 1;
  line-height: 1.7;
}
.testimonial-meta {
  font-size: 0.97rem;
  font-style: normal;
  color: #1CA9B2;
  margin-left: 10px;
  font-family: 'Montserrat',sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 29px rgba(28,169,178,0.12);
  background: #ebfafd;
}
/************* FOOTER **************/
footer {
  background: #fff;
  box-shadow: 0 -2px 20px rgba(34,48,90,0.02);
  padding: 48px 0 30px;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  color: #22305A;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  padding: 6px 6px;
  transition: background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #f6fafd;
  color: #1CA9B2;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
  margin-top: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.brand-info span {
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  color: #1CA9B2;
  letter-spacing: 0.01em;
}
address {
  font-style: normal;
  color: #22305A;
  font-size: 0.98rem;
}
address a {
  color: #1CA9B2;
  text-decoration: underline;
  transition: color 0.13s;
}
address a:hover, address a:focus {
  color: #137782;
  text-decoration: none;
}
/****** Small Elements *****/
hr {
  border: none;
  height: 1px;
  background: #e6eaf1;
  margin: 32px 0;
}
::selection {
  background: #1CA9B2;
  color: #fff;
}

/********* COOKIE CONSENT BANNER & MODAL ************/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1.5px solid #e2e5ed;
  box-shadow: 0 -2px 18px rgba(34,48,90,0.06);
  padding: 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 1rem;
  transition: transform 0.22s;
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  margin-left: 18px;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 24px;
  border: 1.4px solid #22305A;
  background: #22305A;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.14s, border 0.14s;
}
.cookie-btn.accept {
  background: #1CA9B2;
  border-color: #1CA9B2;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #137782;
  border-color: #137782;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #22305A;
  border-color: #22305A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f6fafd;
  color: #1CA9B2;
  border-color: #1CA9B2;
}
.cookie-btn.settings {
  background: #fff;
  color: #1CA9B2;
  border-color: #1CA9B2;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1CA9B2;
  color: #fff;
}
/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,48,90,0.35);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.17s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 55px rgba(34,48,90,0.18);
  min-width: 330px;
  max-width: 98vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10001;
  animation: popin 0.35s cubic-bezier(.3,1.45,.3,1) 1;
}
@keyframes popin {
  from {transform: scale(0.88); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 16px;
  color: #22305A;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-switch {
  display: inline-block;
  width: 46px; height: 24px;
  position: relative;
}
.cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e7e9f0;
  border-radius: 18px;
  transition: background 0.1s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #1CA9B2;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  color: #22305A;
  font-size: 1.2rem;
  border: none;
  border-radius: 6px;
  padding: 2px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f6fafd;
}
/************** RESPONSIVE DESIGN *****************/
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 12px; padding-right: 12px;
  }
  section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
  .footer-top { gap: 12px; }
  .footer-nav { gap: 16px; }
  .footer-info { gap: 18px; }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.2rem;}
  section { padding: 20px 3vw; }
  .content-wrapper, .text-section { gap: 15px; }
  .feature-grid, .categories-list, .services-list, .service-types-grid, .benefit-list, .feature-list, .services-highlight-grid {
    flex-direction: column;
    gap: 15px;
  }
  .consultation-steps, .benefit-icons, .quick-benefits {
    flex-direction: column;
    gap: 10px;
  }
  .footer-top, .footer-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .card, .service-types-grid li, .services-highlight-grid li, .feature-grid li, .feature-list li, .categories-list li, .services-list li {
    min-width: 0;
    width: 100%;
    padding: 17px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 9px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    font-size: 0.98rem;
  }
  .cookie-buttons {
    margin-left: 0; gap: 10px;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .cookie-btn {
    width: 100%; text-align: center;
  }
}
@media (max-width: 540px) {
  html { font-size: 15px; }
  section { padding: 11px 0; border-radius: 0; }
  .container { padding-left: 3px; padding-right: 3px; }
}
/******* MICRO-INTERACTIONS & TRANSITIONS *******/
.button, .cta, .cookie-btn {
  transition: background 0.22s, color 0.17s, box-shadow 0.15s, border 0.14s;
}
.card, .testimonial-card, .feature-grid li, .feature-list li, .services-list li, .categories-list li {
  transition: box-shadow 0.2s, transform 0.14s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 33px rgba(34,48,90,0.09), 0 1.5px 2.5px 0px rgba(28,169,178,.08);
}
a, .main-nav a, .footer-nav a {
  transition: color 0.16s, background 0.14s;
}
/****** FORM (Simple) ******/
input, select, textarea {
  border-radius: 7px;
  border: 1.3px solid #e9ecf3;
  padding: 10px 14px;
  font-size: 1rem;
  background: #f7fafc;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1CA9B2;
  background: #fff;
}
/****** ARIA & UTILITY *****/
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
}
/***** VISUAL FINE-TUNING *****/
::-webkit-scrollbar {
  width: 8px;
  background: #f2f5fa;
}
::-webkit-scrollbar-thumb {
  background: #d8dff0;
  border-radius: 5px;
}

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