/* RESET & NORMALIZATION */
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, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FC;
  color: #1B263B;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol { list-style-position: inside; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }

/* BRAND FONTS & GENERIC TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1B263B;
  margin-bottom: 16px;
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }
p, li, td, th {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #26314C;
}
strong { font-weight: 700; }

/* SECTIONS SPACING & LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(27,38,59,0.06);
  padding: 24px;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(27,38,59,0.13);
}
.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;
}
.testimonials-section {
  background: linear-gradient(80deg, #A9D6E5 0%, #E9D8A6 100%);
  border-radius: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(27,38,59,0.09);
  max-width: 650px;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #26314C;
  margin-bottom: 8px;
}
.testimonial-card p {
  color: #1B263B;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(105deg, #E9D8A6 0%, #A9D6E5 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 4px 40px 0 rgba(27,38,59,0.09);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  position: relative;
}
.hero-section h1 {
  font-size: 2.2rem;
  color: #1B263B;
  margin-bottom: 16px;
}
.hero-section p {
  color: #26314C;
  font-size: 1.15rem;
  margin-bottom: 28px;
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E9D8A6;
  box-shadow: 0 2px 14px 0 rgba(169,214,229,0.08);
  position: sticky;
  z-index: 50;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
}
.main-nav img {
  height: 38px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.main-nav li {
  list-style: none;
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #A9D6E5;
  color: #1B263B;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #1B263B;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px 0 rgba(27,38,59,0.09);
  transition: background 0.21s, transform 0.12s, box-shadow 0.26s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #26314C;
  color: #E9D8A6;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 28px 0 rgba(169,214,229,0.21);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  padding: 3px 12px;
  border-radius: 7px;
  color: #1B263B;
  cursor: pointer;
  z-index: 104;
  transition: background 0.25s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A9D6E5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.61,-0.05,0,1.02);
  box-shadow: 8px 0 80px 0 rgba(27,38,59,0.19);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B263B;
  padding: 18px 22px 6px 0;
  margin-right: 10px;
  margin-top: 2px;
  cursor: pointer;
  z-index: 112;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A9D6E5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 36px 0 36px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid #E9D8A6;
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: #A9D6E5;
}

@media (max-width: 1050px) {
  .main-nav {
    max-width: 100vw;
    gap: 8px;
    padding: 12px 8px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 8px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 120;
  }
}

/* --- FOOTER --- */
footer {
  background: #1B263B;
  color: #E9D8A6;
  box-shadow: 0 -2px 16px 0 rgba(27,38,59,0.10);
  padding: 40px 0 16px 0;
  min-height: 140px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-nav a {
  color: #A9D6E5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A9D6E5;
  color: #1B263B;
}
footer .contact-short {
  margin-bottom: 28px;
  font-size: 1rem;
  color: #fff;
}
footer .contact-short a {
  color: #A9D6E5;
}
footer img {
  height: 28px;
  margin-bottom: 14px;
}
footer p {
  font-size: 0.96rem;
}

/* --- CARD ELEMENTS --- */
.card, .testimonial-card {
  margin-bottom: 20px;
}

/* --- TABLE STYLING --- */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(27,38,59,0.04);
  overflow: hidden;
}
table caption {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1B263B;
  font-weight: 600;
  margin-bottom: 8px;
}
td, th {
  padding: 14px 10px;
  font-size: 0.96rem;
  border-bottom: 1px solid #E9D8A6;
}
th {
  background: #A9D6E5;
  color: #1B263B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/* --- ICONS IN LISTS --- */
ul li img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 12px;
}

/* --- CONTACT INFO --- */
.contact-info {
  border: 1px solid #A9D6E5;
  border-radius: 14px;
  background: #F6F8FC;
  padding: 18px 18px 6px 22px;
  margin-bottom: 20px;
}
.address-details, .map-placeholder {
  background: #E9D8A6;
  border-radius: 11px;
  padding: 18px;
  margin-bottom: 20px;
  color: #1B263B;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

/* --- CTA SECTION --- */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 24px 0;
}

/* --- RESPONSIVE BEHAVIOUR --- */
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section, .hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero-section {
    padding: 32px 0 26px 0;
    border-radius: 0 0 28px 28px;
  }
  .testimonials-section {
    padding-top: 22px;
    padding-bottom: 22px;
    border-radius: 16px;
  }
  .main-nav {
    flex-direction: row;
    padding: 8px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 12px;
    font-size: 0.96rem;
  }
  .address-details, .map-placeholder {
    padding: 13px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1.00rem; }
  .container { padding-left: 4px; padding-right: 4px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #E9D8A6;
  box-shadow: 0 -2px 18px 0 rgba(27,38,59,.09);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  z-index: 1030;
  padding: 18px 10vw 18px 10vw;
  font-size: 0.98rem;
  transition: transform 0.32s cubic-bezier(.63,.02,0,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner strong {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner-btn {
  margin-left: 16px;
  margin-right: 5px;
  padding: 8px 17px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-banner-btn.accept {
  background: #A9D6E5;
  color: #1B263B;
}
.cookie-banner-btn.accept:hover, .cookie-banner-btn.accept:focus {
  background: #1B263B;
  color: #fff;
}
.cookie-banner-btn.reject {
  background: #fff;
  color: #1B263B;
  border: 2px solid #A9D6E5;
}
.cookie-banner-btn.reject:hover, .cookie-banner-btn.reject:focus {
  background: #A9D6E5;
  color: #1B263B;
}
.cookie-banner-btn.settings {
  background: #E9D8A6;
  color: #1B263B;
}
.cookie-banner-btn.settings:hover, .cookie-banner-btn.settings:focus {
  background: #A9D6E5;
  color: #1B263B;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1205;
  background: rgba(27,38,59,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 64px 0 rgba(27,38,59,0.22);
  padding: 32px 24px 24px 24px;
  max-width: 92vw;
  width: 400px;
  color: #1B263B;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #26314C;
}
.cookie-modal .cookie-switch {
  width: 40px;
  height: 24px;
  appearance: none;
  background: #A9D6E5;
  border-radius: 24px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.21s;
}
.cookie-modal .cookie-switch:checked {
  background: #E9D8A6;
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.2s;
  box-shadow: 0 2px 6px rgba(27,38,59,0.13);
}
.cookie-modal .cookie-switch:checked:before {
  left: 18px;
}
.cookie-category.disabled label {
  opacity: 0.70;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal .cookie-banner-btn {
  margin: 0 !important;
}

/* --- GENERAL LISTS --- */
ul {
  margin-left: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ol {
  margin-left: 18px;
  margin-bottom: 14px;
}
ul ul, ul ol { margin-bottom: 0; }

/* --- UTILITIES & MISC --- */
::-webkit-input-placeholder { color: #A9A9A9; }
::-moz-placeholder { color: #A9A9A9; }
:-ms-input-placeholder { color: #A9A9A9; }
::placeholder { color: #A9A9A9; }

em { color: #1B263B; background: #E9D8A6; border-radius: 6px; padding: 0 4px; }
hr { border: none; border-top: 1.5px solid #A9D6E5; margin: 18px 0; }

/* --- MICRO-INTERACTIONS --- */
.card, .cta-button, .testimonial-card, .mobile-menu, .mobile-menu-toggle {
  transition: box-shadow 0.25s, background 0.22s, border 0.19s, color 0.22s, transform 0.18s;
}

/* --- Z-INDEX / LAYERING --- */
header { z-index: 100 !important; }
.mobile-menu { z-index: 110 !important; }
.mobile-menu-toggle { z-index: 120 !important; }
.cookie-banner { z-index: 1030 !important; }
.cookie-modal-overlay { z-index: 1205 !important; }

/* --- A11Y: Focus indicators --- */
a:focus, button:focus, .cta-button:focus, .cookie-banner-btn:focus {
  outline: 2px solid #A9D6E5;
  outline-offset: 2px;
}

/* Make sure nothing overlaps and spacing is right */
main > section { margin-bottom: 60px; }
main > section:last-child { margin-bottom: 0; }

/* --- END OF STYLE.CSS --- */