/* --- CSS RESET & BASE STYLES --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #163148;
  background: #F6F6F6;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #163148;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E2D776;
  outline: none;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #163148;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.subheadline {
  font-size: 1.1rem;
  color: #163148;
  font-weight: 600;
  margin-bottom: 20px;
}

strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.text-section {
  max-width: 900px;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #163148;
  box-shadow: 0 2px 12px rgba(22,49,72,0.06);
  position: sticky;
  top: 0;
  z-index: 1060;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
header a img {
  height: 40px;
  margin-right: 28px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #F6F6F6;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  padding: 8px 0;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
header nav a:not(.cta-btn):hover, header nav a:not(.cta-btn):focus {
  color: #E2D776;
  background: #16314820;
}
header .cta-btn {
  margin-left: 8px;
  background: #E2D776;
  color: #163148;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 26px;
  letter-spacing: .03em;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(226,215,118,.12);
  transition: background .25s, color .2s, box-shadow .2s;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: #163148;
  color: #E2D776;
  box-shadow: 0 4px 18px rgba(34,54,118,.11);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: flex;
  background: #E2D776;
  color: #163148;
  font-size: 2rem;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 18px;
  box-shadow: 0 2px 6px rgba(226,215,118,.18);
  transition: background .2s, color .2s, transform .2s;
  z-index: 1101;
  border: none;
}
.mobile-menu-toggle:active {
  transform: scale(.96);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #163148;
  color: #FFF;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .38s cubic-bezier(.5,.75,0,1), opacity .28s, visibility .3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px 0 0;
  background: transparent;
  color: #E2D776;
  font-size: 2.2rem;
  border-radius: 7px;
  padding: 4px 10px;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2D77622;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 58px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: 7px;
  transition: background .14s, color .2s;
  width: 100%;
  text-align: center;
  min-width: 190px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2D776;
  color: #163148;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- LAYOUT SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(22,49,72,0.04);
}
section:last-of-type {
  margin-bottom: 0;
}

.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: 24px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(22,49,72,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, transform .22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px rgba(226,215,118,.18);
  transform: translateY(-2px) scale(1.012);
  z-index: 1;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F6F6F6;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(22,49,72,0.05);
  border-left: 6px solid #E2D776;
  color: #163148;
  font-size: 1.075rem;
  max-width: 700px;
  width: 100%;
  transition: box-shadow .22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(226,215,118,.07);
  background: #FFF;
}
.testimonial-card p {
  margin-bottom: 6px;
  font-weight: 600;
  color: #163148;
}
.testimonial-card span {
  font-size: .98rem;
  color: #374B5F;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* --- SECTIONS & GRIDS (FEATURES, SERVICES, ETC) --- */
.feature-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
}
.feature-grid > *,
.service-grid > * {
  flex: 1 1 200px;
  background: #F6F6F6;
  padding: 28px 22px;
  border-radius: 16px;
  min-width: 260px;
  box-shadow: 0 2px 10px rgba(22,49,72,0.03);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s, background .15s;
}
.feature-grid > *:hover, .service-grid > *:hover {
  background: #E2D776;
  color: #163148;
  box-shadow: 0 4px 22px rgba(226,215,118,.14);
}
.feature-grid img, .service-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.service-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.service-item {
  background: #163148;
  color: #F6F6F6;
  border-radius: 14px;
  padding: 24px 18px 22px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px rgba(22,49,72,0.09);
  transition: box-shadow .19s, background .16s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-item h3 {
  color: #E2D776;
  font-size: 1.2rem;
}
.service-price {
  display: inline-block;
  margin-top: 10px;
  background: #E2D776;
  color: #163148;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(226,215,118,0.07);
  font-size: 1.05rem;
}
.service-item:hover, .service-item:focus {
  background: #E2D776;
  color: #163148;
}
.service-item:hover h3, .service-item:focus h3 {
  color: #163148;
}
.service-item:hover .service-price, .service-item:focus .service-price {
  background: #163148;
  color: #E2D776;
}

/* --- LISTS & FAQ --- */
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: #163148;
  font-size: 1rem;
  font-weight: 500;
}
ul li:before {
  content: '●';
  position: absolute;
  left: 0;
  color: #E2D776;
  font-size: 1.2em;
  line-height: 1;
  top: 2px;
}
ul.feature-grid li:before,
ul.service-grid li:before {
  display: none;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}
.faq-accordion > div {
  background: #F6F6F6;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(22,49,72,0.06);
  padding: 18px 22px;
  transition: box-shadow .18s, background .16s;
}
.faq-accordion > div:hover {
  box-shadow: 0 3px 18px rgba(226,215,118,0.11);
  background: #FFF;
}
.faq-accordion h3 {
  font-size: 1.08rem;
  color: #163148;
  margin-bottom: 5px;
}
.faq-accordion p {
  font-size: 0.97rem;
}

.map-placeholder {
  background: #FFF9C0;
  border: 2px dashed #E2D776;
  border-radius: 13px;
  padding: 28px 18px;
  margin-top: 22px;
}
.map-placeholder em {
  color: #163148;
  font-weight: 700;
  font-size: 1rem;
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  margin-bottom: 30px;
  background: #F6F6F6;
  box-shadow: 0 1px 10px rgba(22,49,72,0.03);
  overflow: hidden;
}
thead {
  background: #163148;
  color: #E2D776;
}
th, td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid #ececec;
  font-size: 1rem;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 900;
  background: #163148;
  color: #E2D776;
}
tbody tr:nth-child(even) {
  background: #FFF;
}

/* --- BUTTONS & CALLS-TO-ACTION --- */
.cta-btn {
  background: #E2D776;
  color: #163148;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  padding: 12px 34px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 16px rgba(226,215,118,0.09);
  margin-top: 10px;
  transition: background .24s, color .12s, box-shadow .14s, transform .18s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #163148;
  color: #E2D776;
  box-shadow: 0 6px 32px rgba(226,215,118,0.13);
  transform: scale(1.025);
}

/* --- FOOTER --- */
footer {
  background: #163148;
  color: #F6F6F6;
  padding: 48px 0 15px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  align-items: center;
}
footer nav a {
  color: #E2D776;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
  font-size: 1rem;
  padding: 4px 10px;
  transition: background .14s, color .2s;
}
footer nav a:hover, footer nav a:focus {
  background: #E2D776;
  color: #163148;
}
footer .contact-info p, footer .contact-info a {
  color: #F6F6F6;
  font-size: 1rem;
  text-decoration: none;
}
footer .contact-info strong {
  color: #E2D776;
  font-weight: 900;
  margin-right: 4px;
}
footer .legal-links {
  margin-top: 16px;
  font-size: 0.98rem;
  color: #C7C7C7;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #163148;
  color: #FFF;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 32px 18px 32px;
  box-shadow: 0 0 24px rgba(22,49,72,0.18);
  gap: 18px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transition: transform .32s cubic-bezier(.5,.75,0,1), opacity .18s;
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.cookie-banner p {
  color: #FFF;
  font-size: 1.05rem;
  margin-bottom: 7px;
  font-weight: 600;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  font-weight: 900;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  margin-right: 0;
  transition: background .2s, color .16s, transform .12s;
  box-shadow: 0 1px 6px rgba(226,215,118,0.03);
}
.cookie-btn.accept {
  background: #E2D776;
  color: #163148;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #F6F6F6;
}
.cookie-btn.reject {
  background: #FFF;
  color: #163148;
  border: 2px solid #E2D776;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E2D776;
  color: #163148;
}
.cookie-btn.settings {
  background: #163148;
  color: #E2D776;
  border: 1.5px solid #E2D776;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E2D776;
  color: #163148;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 1350;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,49,72,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s, visibility .22s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #FFF;
  color: #163148;
  border-radius: 24px;
  padding: 36px 30px 28px 30px;
  max-width: 450px;
  min-width: 320px;
  box-shadow: 0 7px 56px rgba(34,44,99,.19);
  animation: cookieModalIn .33s cubic-bezier(.5,.7,0,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookieModalIn {
  0% { transform: scale(1.10) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #163148;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.cookie-category input[type=checkbox] {
  accent-color: #E2D776;
  width: 23px;
  height: 23px;
  border-radius: 6px;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: transparent;
  font-size: 1.7rem;
  color: #163148;
  border-radius: 6px;
  transition: background .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E2D77633;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .container {
    padding: 0 14px;
  }
  section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.92rem; }
  h2 { font-size: 1.34rem; }
  .feature-grid > *, .service-grid > * {
    min-width: 170px;
    padding: 18px 9px;
    gap: 10px;
  }
  .service-list, .feature-grid, .service-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  .testimonial-card {
    font-size: .977rem;
    padding: 14px 8px;
  }
  section {
    margin-bottom: 24px;
    padding: 15px 2px;
    border-radius: 12px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .cookie-banner {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding: 12px 8px 6px 8px;
    font-size: 1rem;
    gap: 9px;
  }
  .cookie-modal-content {
    padding: 16px 6px 16px 12px;
    min-width: 220px;
    max-width: 92vw;
    border-radius: 12px;
  }
}

/* --- UTILS --- */
.hide {
  display: none !important;
}

/* --- GEOMETRIC ACCENTS / DECORATIVE --- */
/* Example geometric shapes for bolder modern look */
.card::before,
.service-item::before,
.feature-grid > *::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
}
.card::before {
  left: -22px; top: -18px; width: 88px; height: 66px; background: #E2D776;
}
.service-item::before {
  right: -17px; bottom: -13px; width: 59px; height: 43px; background: #E2D776;
}
.feature-grid > *::before {
  left: -16px; top: -13px; width: 38px; height: 26px; background: #E2D776;
}
.testimonial-card::before {
  right: -19px; bottom: 0; width: 54px; height: 28px; background: #E2D776;
}
@media (max-width: 768px) {
  .card::before, .service-item::before, .feature-grid > *::before, .testimonial-card::before {
    display: none;
  }
}

/* --- FONT IMPORT (ASSUMED SELF-HOSTED OR CDN) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
