/* RESET & BASE STYLES */
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, main, section, article, aside, footer, header, nav {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
  background: #F7F5F2;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  background-color: #F7F5F2;
  color: #2D4560;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2D4560;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B7C4CE;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
}
strong {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #2D4560;
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #445061;
}
/* CONTAINERS & LAYOUTS */
.container {
  max-width: 1120px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Mandatory Flex patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(45, 69, 96, 0.04);
  display: flex;
  flex-direction: column;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(45, 69, 96, 0.07);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(45,69,96,0.12);
  transform: translateY(-2px) scale(1.02);
}
.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;
  background: #F7F5F2;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(45, 69, 96, 0.07);
  color: #2D4560;
  font-style: italic;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 2px 16px rgba(45,69,96,0.14);
}
.testimonial-card strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-size: 0.93rem;
  color: #2D4560;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(45,69,96,0.07);
  padding: 20px;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(45, 69, 96, 0.04);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px 0 14px 0;
}
.main-nav .logo {
  margin-right: 36px;
}
.main-nav .btn-primary {
  margin-left: auto;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #718fb0;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F5F2;
  color: #B7C4CE;
}
/* Primary Button */
.btn-primary {
  background: #2D4560;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 10px 26px;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(45, 69, 96, 0.13);
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.02em;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B7C4CE;
  color: #2D4560;
  box-shadow: 0 6px 22px rgba(45,69,96,0.12);
  transform: translateY(-1px) scale(1.02);
}
/* Secondary Button */
.btn-secondary {
  background: #F7F5F2;
  color: #2D4560;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 9px 20px;
  border: 1.5px solid #B7C4CE;
  border-radius: 18px;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B7C4CE;
  color: #fff;
  border-color: #2D4560;
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #F7F5F2;
  color: #2D4560;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 6px 16px;
  cursor: pointer;
  transition: background .2s, color .2s;
  margin-left: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #B7C4CE;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(247,245,242,0.99);
  box-shadow: 0 10px 60px rgba(45, 69, 96, 0.15);
  z-index: 999;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 34px 26px 16px 26px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: #2D4560;
  border: none;
  font-size: 2.1rem;
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
  z-index: 2;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B7C4CE;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.28rem;
  color: #2D4560;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B7C4CE;
  color: #fff;
}
/* Hide mobile nav by default */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}
/* HERO, TEXT, SECTION SPACING */
.text-section {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #445061;
}
.text-section h2,
.text-section h3 {
  margin-top: 22px;
}
.section ul li {
  margin-bottom: 10px;
  padding-left: 0.2em;
  line-height: 1.6;
}
.section ul li strong { color: #2D4560; }
/* FOOTER */
footer {
  background: #F7F5F2;
  padding: 0;
  border: none;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 38px;
  padding: 38px 0 22px 0;
  flex-wrap: wrap;
  border-bottom: 1px solid #B7C4CE;
}
.footer-top .logo {
  display: block;
  margin-right: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #445061;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #B7C4CE;
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0 8px 0;
}
.contact-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #2D4560;
  font-size: 0.95rem;
}
.brand-note {
  color: #888F9A;
  font-size: 0.93rem;
  margin-top: 10px;
}
/* MAP PLACEHOLDER */
.map-placeholder {
  background: #F7F5F2;
  color: #2D4560;
  border-radius: 11px;
  padding: 18px 18px;
  margin: 14px 0 0 0;
  font-size: 0.96rem;
}
/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .footer-top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 26px;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    padding: 28px 8px;
    border-radius: 13px;
  }
  .card-container, .content-grid, .quick-links {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px;
    border-radius: 11px;
  }
  .feature-item {
    padding: 14px;
    border-radius: 9px;
  }
}
@media (max-width: 500px) {
  .section {
    margin-bottom: 32px;
    padding: 15px 0;
    border-radius: 9px;
  }
  .card {
    padding: 13px 6px;
    border-radius: 8px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 8px 8px;
  }
}
/* ACCESSIBILITY */
:focus {
  outline: 2px solid #B7C4CE;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #888F9A; opacity:1; }
::-moz-placeholder { color: #888F9A; opacity:1; }
:-ms-input-placeholder { color: #888F9A; opacity:1; }
::placeholder { color: #888F9A; opacity:1; }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #2D4560;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 20px 14px;
  z-index: 2000;
  box-shadow: 0 -4px 18px rgba(45, 69, 96, 0.13);
  font-size: 1rem;
  transition: transform 0.36s cubic-bezier(.87,0,.13,1), opacity 0.19s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #fff;
  margin-right: 18px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #F7F5F2;
  color: #2D4560;
  padding: 8px 20px;
  border: none;
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  margin-left: 0;
  transition: background .16s, color .16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B7C4CE;
  color: #fff;
}
.cookie-btn--settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 8px 14px;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #2D4560;
  color: #B7C4CE;
  border-color: #B7C4CE;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 6px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    gap: 9px;
    margin-top: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal__backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(45,69,96,0.22);
  z-index: 2222;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  opacity: 0;
}
.cookie-modal__backdrop.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #2D4560;
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 6px 32px rgba(45,69,96,.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  z-index: 3333;
  animation: cookieModalShow 0.36s cubic-bezier(.83,0,.17,1);
}
@keyframes cookieModalShow {
  from { opacity: 0; transform: translateY(36px) scale(.93); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal__close {
  position: absolute;
  right: 12px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #2D4560;
  cursor: pointer;
  transition: color 0.19s;
  z-index: 2;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #B7C4CE;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #F7F5F2;
  padding: 9px 12px;
  border-radius: 8px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.toggle-switch input {
  opacity:0;
  width:0;
  height:0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top:0; left:0; right:0; bottom:0;
  background: #B7C4CE;
  border-radius: 24px;
  transition: background .17s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #2D4560;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .17s;
  box-shadow: 0 1px 4px rgba(45,69,96,.10);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(18px);
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 8px 9px 8px;
    max-width: 96vw;
    border-radius: 12px;
  }
}

/* TYPOGRAPHY CLASSES */
.display-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2D4560;
}
.body-font {
  font-family: 'Roboto', Arial, sans-serif;
}

/* PAGE UTILITY */
.hide {
  display: none !important;
}
.show {
  display: block !important;
}

/* SCANDINAVIAN CLEAN EFFECTS */
.card, .testimonial-card, .footer-top, .footer-bottom, .feature-item, .section {
  box-shadow: 0 1px 16px rgba(45,69,96,0.04);
}
.section, .feature-item, .card, .testimonial-card {
  border-radius: 18px;
  background: #fff;
}
/* ELEGANT SHADOW FOR HOVERED BUTTONS */
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  transform: translateY(1px) scale(.99);
  box-shadow: 0 1px 4px rgba(45,69,96,0.08);
}

/* MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .cookie-btn, .toggle-slider {
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
}

/* ICONS IN CONTACT DATA */
.contact-footer img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 4px;
  margin-left: 12px;
  margin-bottom: -3px;
}
.contact-footer img:first-child {
  margin-left: 0;
}

/* Z-INDEX SAFETY BARRIER */
header, .mobile-menu, .cookie-banner, .cookie-modal__backdrop {
  z-index: 999 !important;
}

/* END OF CSS */
