/* 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;
}

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #181818;
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #18427C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FBAF3C;
  text-decoration: underline;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #181818;
  line-height: 1.16;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* CONTAINERS & FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  padding: 32px 24px;
  border: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(24,66,124,0.15);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: #f7f7f7;
  box-shadow: 0 4px 24px rgba(24,66,124,0.06);
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #eee;
  min-width: 0;
  max-width: 100%;
}
.testimonial-card p {
  color: #111;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #606060;
  font-size: 0.98rem;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.map-image-placeholder {
  width: 100%;
  min-height: 180px;
  background: #e5e8ea;
  border-radius: 8px;
  margin-top: 16px;
}

/* NAVIGATION STYLES */
header {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 2px 14px rgba(24,66,124,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #232323;
  font-size: 1rem;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #18427C;
  transition: width 0.2s;
  border-radius: 1px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 75%;
}
.main-nav a.current {
  color: #18427C;
  font-weight: 700;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 11px 30px;
  font-size: 1.05rem;
  cursor: pointer;
  outline: none;
  transition:
    background 0.22s,
    color 0.19s,
    box-shadow 0.15s,
    border-color 0.18s;
  box-shadow: 0 2px 8px rgba(24,66,124,0.05);
  margin-right: 12px;
  text-align: center;
  gap: 8px;
}
.btn-primary {
  background: #18427C;
  color: #fff;
  border: 1px solid #18427C;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #18427C;
  border-color: #18427C;
  box-shadow: 0 4px 20px rgba(24,66,124,0.16);
}
.btn-secondary {
  background: #fff;
  color: #18427C;
  border: 1.5px solid #18427C;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #18427C;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24,66,124,0.17);
}
.button-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

footer {
  background: #181818;
  color: #fafafa;
  padding: 40px 0 0 0;
  margin-top: 64px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  align-items: center;
  color: #bfc9d3;
}
.footer-menu a {
  color: #bfc9d3;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-menu a:hover {
  color: #FBAF3C;
}
footer .contact-info {
  color: #ededed;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 270px;
}

.contact-info img {
  width: 50px;
}

footer .newsletter-signup h3 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
}
footer .newsletter-signup p {
  color: #bfc9d3;
  font-size: 1rem;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  font-size: 1rem;
}
table th, table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #ececec;
}
table tr:hover td {
  background: #f6f8fb;
}
table th {
  background: #f2f4f8;
  font-family: 'Montserrat', sans-serif;
  color: #18427C;
  font-size: 1.02rem;
}

/* FAQ */
.faq-item {
  background: #f7f8fa;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(24,66,124,0.03);
  padding: 20px 18px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: box-shadow 0.18s;
}
.faq-item h3 {
  color: #18427C;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.faq-item p {
  color: #232323;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 6px 26px rgba(24,66,124,0.07);
}

.text-section {
  padding: 12px 2px;
  color: #232323;
  font-size: 1.08rem;
  background: #f7f7f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(24,66,124,0.03);
  margin-bottom: 24px;
}

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  background: #232323;
  color: #fff;
  padding: 26px 22px 20px 22px;
  border-radius: 15px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
  opacity: 1;
  pointer-events: all;
  transition: opacity .36s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  border-radius: 8px;
  border: none;
  font: inherit;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color 0.19s, color 0.16s, box-shadow 0.17s;
  box-shadow: 0 1px 4px rgba(24,66,124,0.05);
}
.cookie-btn-accept {
  background: #18427C;
  color: #fff;
  border: 1.5px solid #18427C;
}
.cookie-btn-accept:hover {
  background: #fff;
  color: #18427C;
}
.cookie-btn-reject {
  background: #fff;
  color: #232323;
  border: 1.5px solid #cacaca;
}
.cookie-btn-reject:hover {
  background: #d8d8d8;
}
.cookie-btn-settings {
  background: #f2f4f8;
  color: #232323;
  border: 1.5px solid #e1e3e6;
}
.cookie-btn-settings:hover {
  background: #18427C;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 66, 124, 0.34);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #232323;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.16);
  max-width: 430px;
  width: 100%;
  padding: 32px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: appear-modal 0.41s cubic-bezier(.4,0,.2,1);
}
@keyframes appear-modal {
  from { opacity: 0; transform: translateY(48px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #18427C;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover {
  color: #FBAF3C;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.03rem;
}
.cookie-category-label {
  flex: 1 1 0%;
  color: #232323;
}
.cookie-toggle-switch {
  position: relative;
  width: 42px;
  height: 22px;
}
.cookie-toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #bfc9d3;
  border-radius: 16px;
  transition: background 0.2s;
}
.cookie-toggle-switch input:checked + .cookie-slider {
  background: #18427C;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 2.5px;
  bottom: 2.7px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 12px;
  transition: transform 0.18s;
  box-shadow: 0 1px 2px rgba(24,66,124,0.13);
}
.cookie-toggle-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

/* --- BURGER MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #18427C;
  cursor: pointer;
  margin-left: 14px;
  z-index: 202;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #FBAF3C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #181818;
  color: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.27s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  z-index: 205;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FBAF3C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 50px;
  align-items: flex-start;
  padding-left: 30px;
  padding-bottom: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 7px 0;
  transition: color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FBAF3C;
}

/* SECTIONS SPACING */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* HERO & CTA EMPHASIS */
.content-wrapper > h1, .content-wrapper > h2 {
  margin-bottom: 10px;
  color: #181818;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.content-wrapper > p {
  color: #232323;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

/* MEDIA QUERIES */
@media (max-width: 1150px) {
  .container {
    max-width: 900px;
  }
  .footer-menu {
    gap: 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .content-wrapper, footer .content-wrapper {
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .footer-menu, .contact-info {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 22px 6px;
  }
  main > section {
    margin-bottom: 38px;
    padding: 26px 0;
  }
  .card {
    padding: 22px 12px;
    margin-bottom: 14px;
  }
  header .container {
    flex-direction: row;
    gap: 9px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand {
    gap: 8px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .container {
    padding: 0 7px;
  }
  .testimonial-card, .faq-item {
    padding: 14px 7px;
  }
  .btn-primary, .btn-secondary {
    padding: 9px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    max-width: 98vw;
    left: 2vw;
    right: 2vw;
    padding: 18px 8px;
    font-size: 0.96rem;
  }
  .cookie-modal {
    padding: 18px 7px 14px 7px;
  }
}
@media (max-width: 480px) {
  .footer-menu {
    font-size: .93rem;
    flex-wrap: wrap;
    gap: 7px;
  }
  .cookie-modal {
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid, .card-container, .button-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* MONOCHROME SOPHISTICATED THEME & UX DETAILS */
body {
  background: #fff;
  color: #1a1a1a;
}
section {
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 1px 16px 0 rgba(24,66,124,0.06);
  margin-bottom: 32px;
}
section:last-child {
  margin-bottom: 0;
}

/* ICONS in features/about */
ul li img, .feature-item img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
  filter: grayscale(100%);
}

/* SPECIALS */
::-webkit-scrollbar {
  width: 9px;
  background: #f2f2f2;
}
::-webkit-scrollbar-thumb {
  background: #e2e7f0;
  border-radius: 8px;
}
::-webkit-selection {
  color: #fff;
  background: #18427C;
}
::selection {
  color: #fff;
  background: #18427C;
}

/* Inputs and Forms (general styles) */
input, textarea, select {
  background: #fafbfc;
  color: #232323;
  border: 1.3px solid #e1e3e6;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  width: 100%;
  box-shadow: 0 1px 6px rgba(24,66,124,0.02);
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #18427C;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #232323;
  margin-bottom: 4px;
}

/* Lists for monochrome sophistication */
ul li, ol li {
  color: #232323;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
strong {
  color: #181818;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Microinteractions (buttons, cards) */
.btn-primary, .btn-secondary, .cookie-btn {
  will-change: background, color;
}
.card, .faq-item, .testimonial-card {
  will-change: box-shadow;
}

/* Checkbox + Radio custom basic (for cookie modal) */
input[type="checkbox"]:not(.cookie-toggle-input), input[type="radio"] {
  accent-color: #18427C;
}

/* z-index stacking for overlays and headers */
header {
  z-index: 1001;
  position: sticky;
}
.mobile-menu {
  z-index: 1200;
}
.cookie-banner {
  z-index: 1400;
}
.cookie-modal-overlay {
  z-index: 2001;
}

/* Accessibility: Focus states */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #18427C;
  outline-offset: 2px;
}

/* Hide visually but not from screen readers (for cookie essential lock) */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
