/* =========================
  CSS 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, 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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  background: #FAF7F2;
  color: #23405C;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23405C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #65A3BF;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: 700;
}
/* Selection */
::selection {
  background: #ffe7c6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #23405C;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.17rem; margin-bottom: 12px; }
@media (min-width: 600px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}
p {
  margin-bottom: 16px;
  color: #324968;
}
/* Container & Base Layout */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 900px) {
  .section {
    padding: 60px 0px;
  }
}
/*
==================
  Header
================== */
header {
  width: 100%;
  background: #FAF7F2;
  box-shadow: 0 4px 16px rgba(101,163,191,0.05);
  border-bottom: 1px solid #efe7da;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo img {
  height: 44px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(101,163,191,0.10);
  padding: 6px 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 10px;
  color: #23405C;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.main-nav a.cta-primary {
  background: #65A3BF;
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(101,163,191,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.22s cubic-bezier(.24,.92,.92,1.23);
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: #23405C;
  color: #fff;
  box-shadow: 0 4px 16px rgba(35,64,92,0.08);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #efe7da;
  color: #65A3BF;
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  color: #23405C;
  width: 46px;
  height: 46px;
  box-shadow: 0 2px 8px rgba(101,163,191,0.13);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:active {
  background: #efe7da;
}
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/*
==================
  MOBILE MENU
================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,92,0.92);
  color: #fff;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 6000;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  transition: background 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 110px 38px 38px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #fff;
  background: none;
  padding: 14px 0;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: rgba(101,163,191,0.16);
  color: #fff;
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}
/*
==================
  HERO SECTION
================== */
.hero {
  background: #FAF7F2;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  box-shadow: 0 24px 64px -28px #65A3BF14;
}
.hero .container {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  margin-bottom: 14px;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #23405C;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #324968;
}
@media (min-width: 900px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}
/* CTA BUTTONS */
.cta-primary {
  display: inline-block;
  background: #65A3BF;
  color: #fff !important;
  padding: 13px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(101,163,191,0.11);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s cubic-bezier(.25,.98,.74,1.21);
  cursor: pointer;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23405C;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(35,64,92,0.13);
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #23405C;
  padding: 11px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  border: 2px solid #65A3BF;
  margin-top: 8px;
  box-shadow: 0 1px 4px 0 #65A3BF14;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #65A3BF;
  color: #fff;
}
/*
==================
  FEATURES & CARDS
================== */
.features {
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 2px 20px #65A3BF09;
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAF7F2;
  border-radius: 20px;
  box-shadow: 0 2px 10px #65A3BF13;
  padding: 24px 22px;
  min-width: 220px;
  max-width: 310px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 26px #65A3BF21;
  transform: translateY(-4px) scale(1.025);
}
.feature-item img {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 14px;
  padding: 7px;
  margin-bottom: 4px;
  box-shadow: 0 1px 5px #65A3BF18;
}
.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}
.feature-item p {
  font-size: 1rem;
  color: #23405C;
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}
/*
==================
  ABOUT & TEXT SECTIONS
================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.07rem;
  color: #324968;
}
.text-section ul, .text-section ol {
  margin-bottom: 14px;
  margin-left: 28px;
}
.certifications, .trusted-by {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.certifications img {
  width: 32px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px #65A3BF08;
}
/*
==================
  TESTIMONIALS
================== */
.testimonials {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 20px #65A3BF0B;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #23405C;
  border-radius: 22px;
  box-shadow: 0 3px 20px #23405c18;
  padding: 20px 22px;
  width: 100%;
  max-width: 350px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px #65A3BF26;
  transform: translateY(-3px) scale(1.012);
}
.testimonial-card strong {
  margin-top: 7px;
  color: #23405C;
  font-size: 1rem;
}
.star-rating {
  color: #ffc46f;
  font-size: 1.1em;
  letter-spacing: 1.5px;
}
@media (max-width: 1000px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
/*
==================
  SERVICES DETAIL LIST
================== */
.service-list,
.service-list-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
}
.service-item {
  background: #FAF7F2;
  border-radius: 18px;
  box-shadow: 0 2px 11px #65A3BF0c;
  padding: 20px 20px 18px 20px;
  min-width: 200px;
  max-width: 300px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 6px 22px #65A3BF1B;
  transform: translateY(-3px) scale(1.013);
}
.service-item h3 {
  font-size: 1.1rem;
}
.service-item p {
  font-size: 1rem;
  color: #324968;
  margin-bottom: 6px;
}
.service-item strong {
  color: #65A3BF;
  font-size: 1.03rem;
  font-weight: 600;
  margin-top: 7px;
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .service-item {
    max-width: 100%;
    min-width: 0;
  }
}
/* Service summary (previews) in index */
.service-list-summary ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 17px;
  margin-left: 24px;
  font-size: 1.02rem;
  color: #324968;
}
/*
==================
  CASE STUDIES & IMPACT
================== */
.case-studies ul,
.impact-stats ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  margin-left: 24px;
  color: #23405C;
}
@media (min-width: 700px) {
  .case-studies ul,
  .impact-stats ul {
    font-size: 1.07rem;
  }
}
/*
==================
  CONTACT & INFOS
================== */
.contact-section .contact-details,
.contact-info-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  align-items: center;
}
.contact-section .contact-details>div,
.contact-info-teaser>div {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #FAF7F2;
  border-radius: 12px;
  padding: 10px 14px 10px 10px;
  font-size: 1.01rem;
}
.contact-section .contact-details img,
.contact-info-teaser img {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 7px #65A3BF13;
  padding: 4px;
}
.contact-section .address,
.contact-section .opening-hours,
.contact-section .map-embed {
  margin-bottom: 18px;
  border-radius: 12px;
  background: #fff;
  padding: 15px 19px;
  box-shadow: 0 1.5px 10px #65A3BF08;
}
.contact-section .map-embed img {
  width: 54px; height: 54px;
  margin-bottom: 8px;
  border-radius: 10px;
  background: #65A3BF1F;
  padding: 6px;
}
/* Footer */
footer {
  margin-top: 100px;
  padding: 48px 0 24px 0;
  background: #23405C;
  color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -6px 36px #65A3BF19;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  flex: 1 1 180px;
}
.footer-navigation a {
  color: #65A3BF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 9px;
  transition: background 0.15s, color 0.18s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  background: #fff;
  color: #23405C;
}
.company-info p{
  color: #fff;
}
.company-info {
  flex: 2 1 250px;
  font-size: 0.97rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  transition: background 0.17s;
}
.social-links a:hover {
  background: #65A3BF;
}
.social-links img {
  width: 26px; height: 26px;
  border-radius: 50%;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  background: #FAF7F2;
  margin-top: 0;
  box-shadow: 0 2px 12px #65A3BF0A;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
/*
==================
  THANK YOU
================== */
.thank-you {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 20px #65A3BF11;
  margin-bottom: 60px;
  padding: 40px 0;
}
/*
==================
  LEGAL SECTIONS
================== */
.legal-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 24px #65A3BF13;
  margin: 40px 0 60px 0;
  padding: 40px 0 40px 0;
}
.legal-section .text-section h2 {
  margin-top: 20px;
  color: #65A3BF;
}
.legal-section .text-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
  font-size: 1.01rem;
  color: #324968;
}
/*
==================
  BLOG ARTICLES
================== */
.article-list ul,
.advice-teaser ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-left: 22px;
  margin-bottom: 17px;
  font-size: 1.06rem;
}
.article-list a {
  color: #23405C;
  padding-bottom: 1px;
  border-bottom: 1.5px solid #65A3BF33;
  transition: border 0.16s, color 0.18s;
}
.article-list a:hover,
.article-list a:focus {
  color: #65A3BF;
  border-bottom: 1.5px solid #23405C;
}
/*
==================
RESPONSIVE FLEXBOX LAYOUTS
================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #23405c16;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.14s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 30px #65A3BF23;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 850px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .footer-logo {
    width: 42px;
    height: 42px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }
  .section, .hero, .features, .testimonials, .about-preview, .services-preview, .thank-you, .legal-section, .contact-section {
    padding: 26px 0;
    border-radius: 16px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
}
/*
==================
  TRANSITIONS & MICRO-INTERACTIONS
================== */
button,
.cta-primary,
.cta-secondary,
.main-nav a,
.footer-navigation a,
.card,
.feature-item,
.testimonial-card,
.service-item {
  transition: box-shadow 0.18s, color 0.21s, background 0.18s, transform 0.14s;
}
/*
==================
  COOKIE CONSENT
================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff7ed;
  color: #23405C;
  box-shadow: 0 -2px 18px #23405c17;
  z-index: 9999;
  padding: 21px 32px 19px 32px;
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
}
.cookie-banner p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 5px;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: #65A3BF;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1.5px 6px #65A3BF19;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #23405C;
}
.cookie-btn.reject {
  background: #efe7da;
  color: #23405C;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #65A3BF;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #65A3BF;
  border: 2px solid #65A3BF;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #65A3BF;
  color: #fff;
}
/* Cookie Preference Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,64,92,0.22);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px #65A3BF2b;
  max-width: 420px;
  width: 94vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  align-items: flex-start;
  animation: cookieModalAppear 0.35s cubic-bezier(.22,1.02,.5,.99);
}
@keyframes cookieModalAppear {
  from { transform: translateY(40px) scale(.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #23405C;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background 0.19s;
}
.cookie-modal-close:hover {
  background: #efe7da;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAF7F2;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #65A3BF;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  border-radius: 6px;
}
.cookie-category.essential label {
  color: #23405C;
  font-weight: 600;
}
.cookie-category.essential input:disabled+label {
  opacity: 0.6;
}
/* Responsive cookie banner/modal */
@media (max-width: 520px) {
  .cookie-banner,
  .cookie-modal {
    padding: 17px 5vw;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 18px 7vw;
  }
}
/*
==================
  UTILITIES
================== */
.hide { display: none !important; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.rounded {
  border-radius: 20px !important;
}
/* FOCUS VISIBLE OUTLINES */
:focus-visible {
  outline: 2.5px solid #65A3BF;
  outline-offset: 2px;
}

/*
==================
  FONT IMPORTS
================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
