/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
body {
  min-height: 100vh;
  background: #F9FAFB;
  color: #1a2534;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
a {
  text-decoration: none;
  color: #19324B;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4E3A4;
  outline: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(25,50,75,0.08);
}
th, td {
  padding: 18px 14px;
  text-align: left;
}
th {
  background: #19324B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #B6C1D6;
}
td {
  font-size: 16px;
  border-bottom: 1px solid #E6EAF3;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #19324B;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.375rem;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 600;
  color: #19324B;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
p, ul, ol {
  font-size: 16px;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #19324B;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  min-width: 140px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  background: #19324B;
  color: #fff;
  border-radius: 40px;
  border: none;
  box-shadow: 0 3px 18px 0 rgba(25, 50, 75, 0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F4E3A4;
  color: #19324B;
  box-shadow: 0 8px 24px 0 rgba(25,50,75,0.20);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  min-width: 120px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #B6C1D6;
  color: #19324B;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #19324B;
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(25,50,75,0.12);
}
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: transparent;
  color: #19324B;
  border: 2px solid #19324B;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #B6C1D6;
  color: #19324B;
  border: 2px solid #B6C1D6;
}

/* HEADER, NAVIGATION & LOGO */
header {
  width: 100%;
  padding: 0 0;
  background: #fff;
  border-bottom: 2px solid #E6EAF3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  position: sticky;
  top: 0;
  z-index: 1004;
  box-shadow: 0 2px 16px 0 rgba(25, 50, 75, 0.04);
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
  margin: 0 10px 0 24px;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #19324B;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4E3A4;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #F4E3A4;
  border-radius: 1.5px;
  transition: width 0.3s;
  margin-top: 4px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
header .btn-primary {
  margin-left: 16px;
  margin-right: 12px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #19324B;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1020;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #19324B;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 34px;
  padding-left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: #F4E3A4;
  background: none;
  border: none;
  cursor: pointer;
  margin: 12px 22px 8px 0;
  z-index: 2010;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: 16px;
  width: 100%;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: #F4E3A4;
  padding: 10px 0;
  letter-spacing: 0.03em;
  transition: color 0.18s, background 0.16s;
  border-radius: 11px;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B6C1D6;
  color: #19324B;
}

/* HIDE MAIN NAV ON MOBILE */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    margin-right: 14px;
  }
}

/* MOBILE MENU OPEN STATE (applied by JS) */
.mobile-menu {
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* LAYOUT HELPERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: transparent;
  padding: 0;
}
.text-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 28px 0 rgba(25,50,75,0.09);
  padding: 36px 34px;
  margin-bottom: 26px;
}
.info-block {
  margin: 16px 0;
  padding: 20px 20px;
  background: #F4E3A4;
  border-radius: 16px;
  font-size: 1rem;
  color: #19324B;
  font-style: italic;
}
.map-block {
  background: #B6C1D6;
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 1rem;
  color: #19324B;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* SECTIONS, FLEX SPACING & PATTERNS */
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(25,50,75,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 276px;
  max-width: 340px;
  padding: 24px 22px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 20px 0 rgba(25,50,75,0.17);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid li {
  background: #B6C1D6;
  color: #19324B;
  border-radius: 18px;
  padding: 20px 18px 14px 18px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  gap: 12px;
  box-shadow: 0 2px 14px 0 rgba(25,50,75,0.10);
}
.feature-grid img {
  height: 32px;
  width: 32px;
  margin-bottom: 8px;
}
.feature-grid span {
  color: #19324B;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.cta-block {
  width: 100%;
  background: #19324B;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(25,50,75,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 28px;
  margin-bottom: 20px;
  margin-top: 16px;
}
.cta-block h2 {
  color: #fff;
  font-size: 2rem;
}
.cta-block .btn-primary {
  background: #F4E3A4;
  color: #19324B;
}
.cta-block .btn-primary:hover, .cta-block .btn-primary:focus {
  background: #fff;
  color: #19324B;
  border: 2px solid #19324B;
}

.card + .card, .section + .section, .content-wrapper + .content-wrapper {
  margin-top: 20px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25,50,75,0.09);
  margin-bottom: 20px;
  margin-top: 8px;
  color: #1a2534;
  font-size: 1rem;
  position: relative;
  min-width: 240px;
}
.testimonial-card p {
  color: #19324B;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card span {
  color: #535C6A;
  font-size: 1rem;
  font-style: italic;
  margin-left: 16px;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 3.3rem;
  color: #F4E3A4;
  position: absolute;
  left: 12px;
  top: 8px;
  pointer-events: none;
  user-select: none;
  opacity: 0.22;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.contact-details img {
  height: 22px;
  width: 22px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #19324B;
  color: #fff;
  padding: 40px 0 16px 0;
  margin-top: 60px;
  position: relative;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
footer nav a {
  color: #F4E3A4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #B6C1D6;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.footer-contact img {
  height: 22px;
  width: 22px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  width: 100vw;
  background: #19324B;
  color: #fff;
  padding: 28px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px 0 rgba(25,50,75,0.22);
  animation: cookie-slide-in 0.62s cubic-bezier(.26,1.12,.38,.99);
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); opacity:0; } to { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  font-size: 1.07rem;
  max-width: 590px;
  color: #fff;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-tertiary {
  font-size: 1rem;
  min-width: 120px;
  padding: 10px 24px;
  margin: 0;
}
.cookie-banner .btn-primary {
  background: #F4E3A4;
  color: #19324B;
  font-weight: 700;
}
.cookie-banner .btn-secondary {
  background: #B6C1D6;
  color: #19324B;
  font-weight: 700;
}
.cookie-banner .btn-tertiary {
  background: transparent;
  border: 2px solid #F4E3A4;
  color: #F4E3A4;
  font-weight: 700;
}
/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 50, 75, 0.85);
  animation: cookie-fade-in 0.25s;
}
@keyframes cookie-fade-in {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal__content {
  background: #fff;
  color: #19324B;
  padding: 38px 30px 30px 30px;
  border-radius: 22px;
  min-width: 320px;
  max-width: 460px;
  width: 94vw;
  box-shadow: 0 8px 34px 0 rgba(25,50,75,0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.11rem;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  color: #19324B;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 20px 0 8px 0;
}
.cookie-preference-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 1rem;
}
.cookie-preference-category .toggle-switch {
  width: 46px;
  height: 26px;
  background: #B6C1D6;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-preference-category .toggle-switch[data-checked="true"] {
  background: #19324B;
}
.toggle-switch .switch-thumb {
  position: absolute;
  left: 2px; top: 2px;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.toggle-switch[data-checked="true"] .switch-thumb {
  left: 22px;
}
.cookie-preference-category .category-label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-preference-category[data-essential], .toggle-switch[data-disabled] {
  opacity: 0.62;
  pointer-events: none;
}
.cookie-modal .btn-primary {
  margin-top: 16px;
  width: 100%;
  min-width: 0;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .text-section, .cta-block {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .card {
    min-width: 220px;
    padding: 16px 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .footer-contact, footer nav {
    gap: 14px;
    font-size: 0.95rem;
    flex-direction: column;
  }
  .text-section {
    padding: 14px 8px;
  }
  .cta-block {
    padding: 18px 6px;
    border-radius: 12px;
  }
  .feature-grid {
    gap: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 7px;
  }
  .btn-primary, .btn-secondary {
    min-width: 0;
    width: 100%;
    padding: 10px 0;
  }
  .section {
    padding: 16px 4px;
  }
}

/* ANIMATIONS, HOVER EFFECTS & INTERACTIONS */
.card, .btn-primary, .btn-secondary, .btn-tertiary, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.16s, color 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(25,50,75,0.20);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid li:hover, .feature-grid li:focus {
  background: #F4E3A4;
  color: #19324B;
  box-shadow: 0 8px 32px 0 rgba(215,190,66,0.11);
}

/* FORMS (where needed) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid #B6C1D6;
  padding: 12px;
  background: #fff;
  color: #19324B;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px 0 rgba(25,50,75,0.06);
  width: 100%;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #19324B;
  outline: none;
}

/* Z-INDEX LAYERING */
header { z-index: 1004; }
.mobile-menu {
  z-index: 2000;
}
.mobile-menu-close {
  z-index: 2010;
}
.cookie-banner {
  z-index: 3000;
}
.cookie-modal {
  z-index: 4000;
}

/* Hide visually but keep accessible (for JS operations etc.) */
.visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* UTILITIES */
.mr-1 { margin-right: 8px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

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

/* Final check: No grid/column properties, only flex layouts used above. All spacing/gap requirements fulfilled. Cards and testimonials use flexbox. Hamburger and cookie components are fully styled and brand-consistent. */
