/* --- 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F5F7FA;
  color: #203040;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #203040;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: 700;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button:focus, a:focus {
  outline: 2px solid #FFD347;
  outline-offset: 2px;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Oswald: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, .logo {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.15; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p, ul, ol, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

/* --- LAYOUT UTILS --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 900px) {
  section { padding: 32px 0; margin-bottom: 40px; }
}
@media (max-width: 600px) {
  section { padding: 22px 0; margin-bottom: 32px; }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(32,48,64,0.10);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 min(320px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 26px rgba(32,48,64,0.15);
  transform: translateY(-4px) scale(1.02);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(32,48,64,0.09);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(32,48,64,0.18);
}
.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;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(32,48,64,0.07);
  margin-bottom: 20px;
  position: relative;
  flex-direction: column;
  max-width: 600px;
}
.testimonial-card blockquote {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #203040;
  margin-bottom: 12px;
  line-height: 1.3;
}
.testimonial-card span {
  font-size: 1rem;
  color: #7A8C99;
  font-weight: 500;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.quick-facts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.quick-facts li {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  color: #203040;
}
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 16px 0;
}
.contact-list img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
}

/* --- HEADER --- */
header {
  background: #203040;
  color: #fff;
  border-bottom: 4px solid #FFD347;
  box-shadow: 0 2px 12px rgba(32,48,64,0.04);
  position: relative;
  z-index: 20;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}
.logo img, .logo {
  height: 44px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.025em;
  font-size: 1.13rem;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.main-nav a.active,
.main-nav a:hover {
  color: #FFD347;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #FFD347;
  color: #203040;
  border-radius: 8px;
  font-size: 2rem;
  height: 42px;
  width: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  margin-left: 8px;
  transition: background 0.2s;
  z-index: 50;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD347;
  color: #203040;
  filter: brightness(0.96);
}
@media (max-width: 1050px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,48,64,0.97);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.31s cubic-bezier(.7,.2,.25,1), transform 0.31s cubic-bezier(.7,.2,.25,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 26px 28px 20px 0;
  font-size: 2rem;
  background: #FFD347;
  color: #203040;
  border-radius: 62px;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(32,48,64,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
  z-index: 120;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #203040;
  color: #FFD347;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-weight: 700;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.035em;
  padding: 18px 0;
  display: block;
  width: 90%;
  text-align: center;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #FFD347;
  color: #203040;
}

/* --- CTA BUTTONS --- */
.cta.primary {
  background: #FFD347;
  color: #203040;
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 12px;
  font-size: 1.17rem;
  font-weight: 700;
  padding: 14px 32px;
  margin-left: 18px;
  display: inline-block;
  transition: background 0.17s, color 0.18s, transform 0.14s;
  box-shadow: 0 2px 9px rgba(32,48,64,0.05);
  border: 2px solid #FFD347;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
}
.cta.primary:hover, .cta.primary:focus {
  background: #203040;
  color: #FFD347;
  transform: translateY(-2px) scale(1.03);
  border-color: #FFD347;
}
.cta-area {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

/* --- HERO --- */
section:first-of-type {
  background: #fff;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 6px 32px rgba(32,48,64,0.07);
  padding-top: 56px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  section:first-of-type {
    border-radius: 0 0 28px 28px;
    padding-top: 28px;
    margin-bottom: 40px;
  }
}

/* --- TEXT CONTENT --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.text-section ul, .text-section ol {
  margin-bottom: 6px;
}
.text-section li {
  margin-bottom: 4px;
  line-height: 1.7;
}

/* --- MAP PLACEHOLDER --- */
.map-placeholder {
  background: #F0F2F8;
  border: 2.5px dashed #FFD347;
  border-radius: 16px;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  min-height: 150px;
}
.map-placeholder img {
  width: 48px;
  height: 48px;
  display: block;
}

/* --- FOOTER --- */
footer {
  background: #203040;
  color: #fff;
  padding: 40px 0 16px 0;
  border-top: 4px solid #FFD347;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
footer .footer-nav a {
  color: #FFD347;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 4px 6px;
  border-radius: 7px;
  transition: background 0.14s, color 0.18s;
}
footer .footer-nav a:hover {
  background: #FFD347;
  color: #203040;
}
footer .footer-contact {
  margin-top: 16px;
  font-size: 0.99rem;
  color: #F3F6FA;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
footer .container > a img {
  height: 44px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #fff;
  color: #203040;
  box-shadow: 0 -3px 24px rgba(32,48,64,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 32px 20px 32px;
  animation: slideUp 0.45s cubic-bezier(.6,.1,.44,1) both;
}
@keyframes slideUp {
  from { transform: translateY(150px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-content {
  max-width: 700px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  padding: 11px 24px;
  border-radius: 10px;
  border: none;
  font-size: 1.07rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  box-shadow: 0 1px 5px rgba(32,48,64,0.06);
}
.cookie-btn.accept {
  background: #FFD347;
  color: #203040;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #203040;
  color: #FFD347;
}
.cookie-btn.reject {
  background: #fff;
  color: #203040;
  border: 2px solid #FFD347;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD347;
  color: #203040;
}
.cookie-btn.settings {
  background: #7A8C99;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #203040;
  color: #FFD347;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 12px 16px 12px;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,48,64,0.64);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #203040;
  border-radius: 20px;
  padding: 36px 34px 32px 34px;
  box-shadow: 0 8px 34px rgba(32,48,64,0.26);
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  transform: translateY(60px) scale(0.97);
  opacity: 0;
  transition: opacity 0.31s, transform 0.28s;
}
.cookie-modal-overlay.open .cookie-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #203040;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal-category .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-modal-category .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #CBD4E0;
  transition: .4s;
  border-radius: 16px;
}
.cookie-modal-category .switch input:checked + .slider {
  background-color: #FFD347;
}
.cookie-modal-category .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
}
.cookie-modal-category .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #FFD347;
  color: #203040;
  border: none;
  border-radius: 50%;
  height: 34px;
  width: 34px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #203040;
  color: #FFD347;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .content-wrapper, .feature-grid {
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .feature-grid > div {
    min-width: 86vw;
    padding: 18px 11px;
  }
  .card {
    padding: 15px;
  }
  .container {
    padding: 0 4px;
    max-width: 99vw;
  }
  .quick-facts ul {
    gap: 12px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    gap: 10px;
  }
  .testimonial-card {
    padding: 14px 8px;
  }
}
.header-spacer { height: 84px; }

/* --- MISC UTILS --- */
::-webkit-scrollbar {
  width: 8px;
  background: #EFF2F8;
}
::-webkit-scrollbar-thumb {
  background: #CBD4E0;
  border-radius: 6px;
}
::selection {
  background: #FFD347;
  color: #181C22;
}

/* --- MICRO-INTERACTIONS --- */
button, .cta, .cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.14s;
}
a, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.16s, background 0.16s, box-shadow 0.14s;
}

/* --- GEOMETRIC DECORATIVE ELEMENTS (OPTIONAL) --- */
.section-accent {
  width: 54px;
  height: 5px;
  background: #FFD347;
  border-radius: 3px;
  margin-bottom: 22px;
}

/* --- UTILITY CLASSES (spacing, alignment) --- */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.text-center { text-align: center; }

/* --- NO GRID, NO COLUMNS, NO ABSOLUTE FOR CONTENT --- */
/* Ensured: All layouts ONLY with flexbox, no display:grid, no column-*, etc. */