/* =====================================================================
   CSS Reset & Normalize
======================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F6F6;
  color: #1C3144;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #1C3144;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7CC6FE;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
}
li:not(:last-child) {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
  color: #1C3144;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C3144;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

/* =====================================================================
   Layout Containers
======================================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(28,49,68,0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
  .container {
    padding: 0 8px;
  }
}

/* =====================================================================
   Header and Navigation
======================================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(28,49,68,0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
}
header a img {
  height: 42px;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #7CC6FE33;
  color: #1C3144;
}
header nav .cta-primary {
  background: #1C3144;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 20px;
  padding: 8px 24px;
  margin-left: 10px;
  box-shadow: 0 4px 18px 0 rgba(28,49,68,0.09);
  transition: background 0.22s, transform 0.15s;
}
header nav .cta-primary:hover, header nav .cta-primary:focus {
  background: #7CC6FE;
  color: #1C3144;
  transform: translateY(-2px) scale(1.05);
}

/* =====================================================================
   Mobile Burger Menu & Overlay
======================================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C3144;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
  margin-left: 16px;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #7CC6FE22;
}
@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-co lor: #F6F6F6;
  background: #F6F6F6;
  box-shadow: 0 6px 36px 0 rgba(28,49,68,0.12);
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.71,0.09,0.33,1.17);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #1C3144;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 22px 20px 8px 0;
  padding: 6px 10px;
  cursor: pointer;
  z-index: 160;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7CC6FE22;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 8px 32px 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C3144;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid #e7eaea;
  transition: background 0.15s, color 0.15s;
  border-radius: 10px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7CC6FE33;
  color: #1C3144;
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/* =====================================================================
   Main Content Section Styles / Cards / Features
======================================================================== */
.hero {
  background: #F6F6F6;
  padding: 60px 0 40px 0;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .hero { padding: 36px 0 24px 0; border-radius: 0 0 18px 18px; }
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 12px;
}
.subheadline {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: #7CC6FE;
  font-weight: 500;
  margin-bottom: 18px;
}
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section, main section {
    margin-bottom: 36px;
    padding: 18px 7px;
    border-radius: 12px;
  }
  .hero .content-wrapper { gap: 14px; }
}

/* Feature Grid / List */
.feature-grid, .feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  margin-top: 12px;
  margin-bottom: 20px;
}
.feature-grid li, .feature-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F6F6F6;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1C3144;
  box-shadow: 0 1px 6px 0 rgba(124,198,254,0.03);
  min-width: 220px;
  flex: 1 0 220px;
  transition: box-shadow 0.22s;
}
.feature-grid li img, .feature-icons li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  filter: grayscale(0.2) brightness(1.03);
}
.feature-grid li:hover, .feature-icons li:hover {
  box-shadow: 0 6px 24px 0 rgba(28,49,68,0.08);
}
@media (max-width: 768px) {
  .feature-grid, .feature-icons {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .feature-icons li {
    min-width: unset;
    width: 100%;
    padding: 12px 14px;
  }
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: disc inside;
  margin-bottom: 14px;
  flex-direction: column;
}
.feature-list li {
  font-size: 1rem;
  color: #1C3144;
}

/* Service List & Key Stats */
.service-list, .team-list, .credentials-list, .key-stats, .brand-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  list-style: none;
}
@media (max-width: 768px) {
  .service-list, .team-list, .credentials-list, .key-stats, .brand-values {
    gap: 8px;
  }
}
.service-list li, .key-stats li, .brand-values li {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 6px 0 rgba(28,49,68,0.025);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service-list li strong { color: #1C3144; font-size: 1.1em; font-weight: 600; }
.service-list span { color: #607085; font-size:0.97em; }

/* =====================================================================
   Card Styles, Card Containers
======================================================================== */
.card-container, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(28,49,68,0.04);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 18px 22px;
}
/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  color: #1C3144;
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(124,198,254,0.07);
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 20px;
  flex: 1 0 270px;
  transition: box-shadow 0.19s, transform 0.2s;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #1C3144;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #7CC6FE;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(124,198,254,0.17);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card { max-width: 100%; min-width: unset; }
}

/* Content Grid & Text-Image Section */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

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

/* Contact Details & Map Placeholder */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.contact-details .text-section {
  min-width: 220px;
  font-size: 1rem;
  color: #1C3144;
}
.map-placeholder {
  background: #F6F6F6;
  border-radius: 12px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 1px 8px 0 rgba(28,49,68,0.04);
  font-size: 0.97rem;
  color: #607085;
  min-width: 200px;
  max-width: 320px;
}
@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* Text Section */
.text-section {
  font-size: 1.05rem;
  color: #1C3144;
  padding-bottom: 12px;
}
.text-section ul, .text-section ol { margin-bottom: 12px; }
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #7CC6FE;
  background: #F6F6F6;
  border-left: 4px solid #7CC6FE;
  margin: 10px 0 14px 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-style: italic;
}

/* =====================================================================
   Buttons & Links
======================================================================== */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #1C3144;
  color: #fff;
  padding: 12px 32px;
  border-radius: 24px;
  border: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 4px;
  box-shadow: 0 2px 18px 0 rgba(28,49,68,0.10);
  transition: background 0.22s, transform 0.14s, color 0.18s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #7CC6FE;
  color: #1C3144;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C3144;
  font-size: 1rem;
  padding: 9px 24px;
  border: 2px solid #7CC6FE;
  border-radius: 18px;
  background: #F6F6F6;
  transition: background 0.18s, border 0.18s, color 0.15s;
  margin-top: 10px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #7CC6FE;
  color: #fff;
  border-color: #1C3144;
}
button, .cta-primary, .cta-secondary {
  outline: none;
}

/* =====================================================================
   Footer
======================================================================== */
footer {
  background: #fff;
  border-top: 1px solid #e3e7e9;
  box-shadow: 0 -2px 12px 0 rgba(28,49,68,0.03);
  margin-top: 48px;
  padding: 32px 0 20px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #607085;
  font-size: 0.99rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #7CC6FE11;
  color: #1C3144;
}
footer a img {
  height: 37px;
}
@media (max-width: 760px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer nav { gap: 10px; }
}

/* =====================================================================
   Cookie Consent Banner & Modal
======================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1C3144;
  box-shadow: 0 -4px 32px 0 rgba(28,49,68,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 30px;
  z-index: 9000;
  transition: opacity 0.35s, transform 0.35s;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 auto;
  margin-right: 10px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 0;
  border-radius: 20px;
  padding: 9px 20px;
  margin: 0;
  cursor: pointer;
  background: #F6F6F6;
  color: #1C3144;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #1C3144;
  color: #fff;
  font-weight: 700;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #7CC6FE;
  color: #1C3144;
}
.cookie-btn.reject {
  background: #e8eaeb;
  color: #607085;
}
.cookie-btn.reject:hover {
  background: #7CC6FE22;
  color: #1C3144;
}
.cookie-btn.settings {
  background: #7CC6FE22;
  color: #1C3144;
}
.cookie-btn.settings:hover {
  background: #7CC6FE;
  color: #fff;
}
@media (max-width: 670px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
    font-size: 0.98rem;
    box-shadow: 0 -2px 12px 0 rgba(28,49,68,0.08);
  }
  .cookie-consent-banner .cookie-actions { gap: 8px; }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10010;
  background: rgba(28,49,68,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.33s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #1C3144;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 8px 64px 0 rgba(28,49,68,0.16);
  min-width: 320px;
  max-width: 96vw;
  transition: transform 0.22s, opacity 0.22s;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 10011;
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: #1C3144;
}
.cookie-modal .cookie-category-list {
  list-style: none;
  margin: 18px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #F6F6F6;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.02rem;
  color: #1C3144;
  box-shadow: 0 2px 12px 0 rgba(124,198,254,0.08);
}
.cookie-category .toggle-switch, .toggle-switch {
  margin-left: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 22px;
}
.toggle-switch input[type=checkbox] {
  display: none;
}
.toggle-slider {
  width: 100%;
  height: 20px;
  background: #e7eaea;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.18s;
  position: relative;
}
.toggle-switch input[type=checkbox]:checked + .toggle-slider {
  background: #7CC6FE;
}
.toggle-slider:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  box-shadow: 0 2px 6px 0 rgba(28,49,68,0.08);
  transition: left 0.19s;
}
.toggle-switch input[type=checkbox]:checked + .toggle-slider:before {
  left: 24px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #1C3144;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .cookie-close-modal:hover {
  color: #7CC6FE;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 6px 14px 10px;
    font-size: 0.97rem;
    border-radius: 11px;
  }
}

/* =====================================================================
   Animations / Micro-interactions
======================================================================== */
/* Slide-in/out for mobile menu */
.mobile-menu {
  will-change: transform;
}
.mobile-menu.open {
  animation: menu-slide-in 0.39s cubic-bezier(0.77,0,0.18,1) 1;
}
@keyframes menu-slide-in {
  from {
    transform: translateX(-100%);
    opacity: 0.7;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.mobile-menu:not(.open) {
  animation: menu-slide-out 0.34s cubic-bezier(0.77,0,0.18,1) 1;
}
@keyframes menu-slide-out {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-105%);
    opacity: 0.6;
  }
}
/* Cookie modal fade-in */
.cookie-modal-backdrop.open {
  animation: cookie-fadein 0.26s cubic-bezier(.68,.18,.4,1.12) 1;
}
@keyframes cookie-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.19s, opacity 0.19s;
}
.cookie-modal-backdrop:not(.open) {
  display: none;
}

/* Micro-interactions on buttons */
button:active,
.cta-primary:active,
.cta-secondary:active,
.cookie-btn:active {
  filter: brightness(0.96);
  transform: scale(0.97);
}

/* =====================================================================
   Accessibility Focus Outlines
======================================================================== */
a:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #7CC6FE;
  outline-offset: 1.5px;
}

/* =====================================================================
   Miscellaneous / Utility
======================================================================== */
::-webkit-input-placeholder { color: #b3b9c4; opacity: 1; }
::-moz-placeholder { color: #b3b9c4; opacity: 1; }
:-ms-input-placeholder { color: #b3b9c4; opacity: 1; }
::placeholder { color: #b3b9c4; opacity: 1; }

/* Utility Classes */
.hide { display: none !important; }

/* Prevent content overlap and maintain min spacing */
.section + .section,
main section + section {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .section + .section,
  main section + section {
    margin-top: 18px;
  }
}

/* Force proper minimum margin between cards in containers */
.card-container > *, .testimonial-list > *, .feature-grid > *, .feature-icons > * {
  margin-bottom: 0;
}

/* Typography scaling */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.05rem; }
  body { font-size: 15px; }
}

/* =====================================================================
   End
======================================================================== */