/* === 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, 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, 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.5;
  background: #F9F9F9;
  color: #17334a;
  font-family: 'Roboto', Arial, sans-serif;
}
img, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #11425C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #FFB300;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #11425C;
  font-weight: 700;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, li, span, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #17334A;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* === GEOMETRIC STRUCTURED: BASE LAYOUT === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(17,66,92,0.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(17,66,92,0.06);
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
}
.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;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #F9F9F9;
  box-shadow: 0 1px 10px rgba(17,66,92,0.07);
  border-left: 6px solid #FFB300;
  flex: 1 1 340px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(17,66,92,0.08);
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 220px;
}

/* Support .feature-grid layouts */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 6px;
}
.feature-grid > div {
  background: #F1F5F7;
  border-radius: 16px;
  padding: 25px 20px 22px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(17,66,92,0.04);
  min-width: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 28px -2px rgba(17,66,92,0.16);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

/* === HERO === */
.hero {
  background: linear-gradient(96deg, #F9F9F9 50%, #EDF3F5 100%);
  padding: 54px 0 44px 0;
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.15rem;
  background: linear-gradient(90deg, #11425C 80%, #FFB300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  font-size: 1.15rem;
  color: #2b4052;
  margin-bottom: 27px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 7px 24px -10px #11425c19;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}
header img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #11425C;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
}
header nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  margin-top: 3px;
  background: #FFB300;
  transition: width 0.25s;
  border-radius: 2px;
}
header nav a:hover:after,
header nav a:focus:after {
  width: 100%;
}
.cta-btn {
  background: #FFB300;
  color: #11425C;
  border-radius: 18px;
  padding: 12px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  box-shadow: 0 2px 18px -5px #FFB30026;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.2s;
  outline: none;
  margin-left: 18px;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #11425C;
  color: #fff;
  box-shadow: 0 4px 24px -2px #11425c51;
  transform: translateY(-2px) scale(1.035);
}

/* === MOBILE NAV MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1201;
  background: #ffb300;
  color: #11425C;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  font-size: 2.1rem;
  border: none;
  box-shadow: 0 2px 14px -8px #11425c21;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #11425C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #F9F9F9;
  z-index: 1300;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.71,0,.21,1);
  box-shadow: 2px 0 24px -12px rgba(17,66,92,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 30px;
  background: #11425C;
  color: #fff;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  font-size: 1.8rem;
  border: none;
  z-index: 1310;
  box-shadow: 0 1px 9px -4px #11425c17;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 84px;
  width: 100%;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #11425C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 3px 5px 0;
  line-height: 2.1;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #11425C;
  color: #fff;
}

/* === MAIN & PAGE SECTIONS === */
main {
  min-height: 54vh;
  margin-bottom: 34px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(17,66,92,0.06);
}

/* Geometric decorations (optional) */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -30px;
  top: 18px;
  width: 38px;
  height: 38px;
  background: #FFB30022;
  border-radius: 8px 28px 6px 16px;
  z-index: 1;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: -29px;
  bottom: 20px;
  width: 22px;
  height: 22px;
  background: #11425C11;
  border-radius: 50% 50% 12% 40%;
  z-index: 1;
  pointer-events: none;
}

section > .container, main > .container {
  z-index: 2;
  position: relative;
}

/* Remove geometric shapes on very small screens for spacing */
@media (max-width: 460px) {
  .section:before, .section:after {
    display: none;
  }
}

/* Cards (generic) */
.card {
  border: 1.5px solid #edf0f6;
}

/* Testimonials */
.testimonial-card {
  font-size: 1.09rem;
  background: #FFF;
  border-left: 6px solid #FFB300;
  color: #16243a;
  box-shadow: 0 1px 10px rgba(17,66,92,0.09);
}
.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  color: #11425C;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-family: "Montserrat", Arial, sans-serif;
  color: #667791;
  font-style: normal;
  font-weight: 600;
}

/* GDPR Notice for Forms */
.gdpr-notice {
  background: #f7ecdf;
  border-left: 4px solid #FFB300;
  color: #17334A;
  font-size: 0.95rem;
  border-radius: 6px;
  padding: 16px 16px 16px 20px;
  margin: 24px 0 0 0;
}
.gdpr-notice a {
  color: #11425C;
  font-weight: 600;
  text-decoration: underline;
}

/* Contact List Icons */
ul li > img {
  width: 24px;
  height: 24px;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}

/* Maps */
.map-embed img {
  border-radius: 13px;
  width: 370px;
  height: 170px;
  object-fit: cover;
  background: #EDF3F5;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #11425C;
  color: #fff;
  padding: 38px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.025em;
  transition: color 0.17s;
  opacity: 0.95;
}
footer nav a:hover,
footer nav a:focus {
  color: #FFB300;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
  font-size: 0.96rem;
  color: #e0edf5;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact p {
  margin: 0;
}

/* === BUTTONS & INTERACTIONS === */
button, .cta-btn {
  outline: none !important;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px solid #FFB300;
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  border-top: 2px solid #FFB300;
  box-shadow: 0 -2px 16px -8px #17334A22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 23px 17px 19px 17px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #17334A;
  animation: bannerfadein 0.4s cubic-bezier(.55,.03,.45,.95);
}
@keyframes bannerfadein {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  margin: 0 2px;
  border: none;
  transition: background 0.19s, color 0.19s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #FFB300;
  color: #11425C;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #11425C;
  color: #fff;
}
.cookie-btn.reject {
  background: #EDF3F5;
  color: #11425C;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #11425C;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #11425C;
  border: 1px solid #FFB300;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #FFB30011;
  border-color: #11425C;
}

/* === Cookie Modal === */
.cookie-modal {
  position: fixed;
  z-index: 2100;
  left: 50%;
  top: 50%;
  width: 98vw;
  max-width: 378px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px -12px #11425C55;
  padding: 29px 23px 25px 23px;
  transform: translate(-50%,-50%) scale(1.04);
  transition: transform 0.22s cubic-bezier(.77,.02,.35,1.02);
  animation: modalPop .32s cubic-bezier(.77,.02,.35,1.02);
}
@keyframes modalPop {
  from { opacity: 0; transform: translate(-50%,-44%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1.04); }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  margin-bottom: 17px;
}
.cookie-modal .cookie-category {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category-name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #11425C;
  font-size: 1rem;
  font-weight: 600;
  flex: 0 0 125px;
}
.cookie-modal .category-toggle {
  margin-left: 18px;
  background: #EDF3F5;
  border: 2px solid #FFB300;
  border-radius: 7px;
  width: 42px;
  height: 26px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-modal .category-toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
  border: 1px solid #179e70;
}
.cookie-modal .category-toggle input:checked + .slider {
  left: 17px;
  background: #FFB300;
  border-color: #FFB300;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .essential {
  font-size: 0.89rem;
  color: #667791;
}

.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 13px;
  background: transparent;
  border: none;
  color: #11425C;
  font-size: 1.6rem;
  cursor: pointer;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1250px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 920px) {
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
  } 
  .container {
    padding: 0 7px;
  }
  .map-embed img { width: 99vw; height: 160px; }
}
@media (max-width: 800px) {
  .hero {
    padding: 30px 0 30px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  section, .section {
    padding: 24px 4px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .text-image-section, .content-grid, .feature-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card,
  .feature-item,
  .feature-grid > div,
  .card {
    min-width: 0;
    width: 100%;
  }
  .footer-contact {
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 0 14px;
  }
  footer nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  .map-embed img {
    width: 98vw;
    min-width: 210px;
  }
}
@media (max-width: 540px) {
  .hero {
    padding: 16px 0 18px 0;
    margin-bottom: 16px;
  }
  .footer-contact {
    font-size: 0.87rem;
  }
}
@media (max-width: 450px) {
  .card, .section, section {
    padding: 15px 2px !important;
    border-radius: 12px;
  }
  .testimonial-card {
    padding: 12px 8px;
  }
  h1 { font-size: 1.13rem; }
  h2 { font-size: 0.99rem; }
}

/* === UTILITY CLASSES & MICROINTERACTIONS === */
.hide {
  display: none !important;
}
.visible {
  display: block !important;
}

::-webkit-input-placeholder { color: #667791; opacity: 1; }
::-moz-placeholder { color: #667791; opacity: 1; }
:-ms-input-placeholder { color: #667791; opacity: 1; }
::placeholder { color: #667791; opacity: 1; }

/* GEOMETRIC, STRUCTURED ACCENTS */
.section > h2::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: #FFB300;
  border-radius: 4px 16px 4px 10px;
  margin-right: 13px;
}

/* VISUAL CARD SHADOWS ON HOVER */
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px -3px #17334A33;
  transform: translateY(-2px) scale(1.015);
  transition: box-shadow 0.22s, transform 0.16s;
}

/* CLARITY FOR MAIN INTERACTIVE ELEMENTS */
.cta-btn:active, .cookie-btn:active, .mobile-menu-toggle:active {
  transform: scale(0.98);
}

/* === FOCUS STATES ACCESSIBILITY === */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2.5px solid #FFB300;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #FFB30033;
}

/* ===== END OF STYLE.CSS ===== */