/* -------------------- CSS RESET & BASE -------------------- */
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;
  background: #F7F4EF;
  color: #284B63;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  margin: 0 0 16px 24px;
}
a {
  color: #F9AA33;
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #284B63;
  background: #F9AA33;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
img, svg {
  max-width: 100%;  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #284B63;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
h1 { font-size: 2.6rem; line-height: 1.12; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px;}
strong { font-weight: bold; }
small { font-size: 0.93em; }

/* Vintage/retro unique font fallback */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

/* -------------------- BRAND COLORS -------------------- */
:root {
  --primary: #284B63;
  --secondary: #EAEAEA;
  --accent: #F9AA33;
  --background: #F7F4EF;
  --card-bg: #ffffff;
  --shadow-vintage: 0 6px 24px 0 rgba(40, 75, 99, 0.06), 0 2px 8px 0 rgba(249, 170, 51, 0.07);
  --pattern-light: repeating-linear-gradient(135deg, #fff 0, #fff 18px, #F9AA3320 18px, #F9AA3320 36px);
}

/* -------------------- LAYOUT & CONTAINERS -------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow-vintage);
  padding: 32px 24px;
  margin-bottom: 32px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pattern-light);
  border-radius: 10px;
  box-shadow: 0 4px 24px 0 rgba(40,75,99,0.038);
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .content-wrapper { padding: 18px 8px; }
  .section { padding: 26px 8px; margin-bottom: 42px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 2px solid var(--secondary);
  border-radius: 14px;
  box-shadow: var(--shadow-vintage);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 18px 22px;
  min-width: 302px;
  flex: 1 1 300px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(40,75,99,0.14), 0 1px 6px 0 rgba(249,170,51,0.12);
  border-color: var(--accent);
}

.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: 16px;
    align-items: flex-start;
  }
}

/* .testimonial-card uses special vintage styling */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: #FDF9F6;
  border: 2px solid #FFD591;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.14rem;
  box-shadow: 0 4px 18px 0 rgba(40,75,99,0.05), 0 0px 2px 0 rgba(249,170,51,0.06);
}
.testimonial-card p {
  color: #233646;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: 1.12em;
}
.testimonial-card small {
  color: #725424;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.2px;
  margin-left: 12px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
  padding-left: 14px;
  background: #FFF6EC;
  border-radius: 8px;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 4px 14px -6px #8882;
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 18px 0;
}
header img {
  height: 42px; width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03em;
  text-decoration: none;
  color: #284B63;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #FFE6C5;
  color: var(--accent);
  text-decoration: none;
}

.btn.primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  box-shadow: 0 2px 6px 0 #FFD59199;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.btn.primary:hover, .btn.primary:focus {
  background: #284B63;
  color: #FFD591;
  box-shadow: 0 6px 20px 0 #F9AA3388;
}

@media (max-width: 1024px) {
  nav {
    gap: 10px;
  }
  header .container {
    gap: 10px;
  }
}

/* -------------------- MOBILE MENU -------------------- */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  nav { display: none; }
  .btn.primary { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 22px;
    right: 21px;
    z-index: 119;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 2.1em;
    border: none;
    box-shadow: 0 2px 8px 0 #F9AA3382;
    transition: background 0.16s, color 0.16s;
    cursor: pointer;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #284B63;
    color: #FFD591;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #F9AA33F0;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.7,0,.28,1);
  box-shadow: 0 0 32px 6px #0003;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2em;
  color: #fff;
  position: absolute;
  top: 18px; right: 24px;
  z-index: 125;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 80px 0 0 32px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2em;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 30px 12px 16px;
  border-radius: 8px;
  transition: background 0.14s, color 0.13s;
  text-decoration: none;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #F9AA33;
  text-decoration: none;
}
@media (min-width:901px) {
  .mobile-menu { display:none !important; }
}

/* -------------------- FOOTER -------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 46px 0 24px 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 42px;
  justify-content: space-between;
}
.footer-nav, .footer-menu, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-nav a, .footer-menu a {
  color: #FFD591;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.98em;
  letter-spacing: 1px;
  margin-bottom: 6px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-menu a:hover {
  color: var(--accent);
}
.footer-contact a {
  color: #fff;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: #F9AA33; }
footer strong {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
  font-size: 1.1em;
}
@media (max-width:800px) {
  footer .container { flex-direction: column; gap: 12px 0; }
}

/* -------------------- COOKIE BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  width: 100vw;
  background: #F9AA33;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 22px 22px 20px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 18px 0 #284B6388;
  animation: bannerIn 0.4s ease;
}
@keyframes bannerIn {
  0% {transform: translateY(100%);} 100% {transform: translateY(0);}
}
.cookie-banner p {
  flex: 1 1 200px;
  font-size: 1.065em;
  margin: 0 12px 0 0;
}
.cookie-banner .cookie-btn-accept, .cookie-banner .cookie-btn-reject, .cookie-banner .cookie-btn-settings {
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  margin-right: 10px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #284B63;
  box-shadow: 0 1px 4px 0 #EAEAEA99;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-btn-accept:hover, .cookie-banner .cookie-btn-settings:hover {
  background: #284B63;
  color: #FFD591;
}
.cookie-banner .cookie-btn-reject {
  background: #FFD591;
  color: #284B63;
}
.cookie-banner .cookie-btn-reject:hover {
  color: #fff; background: #a65a00;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 19px 8px; gap: 12px; }
  .cookie-banner p { margin-bottom:10px; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(40,75,99,0.66);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #FFF6EC;
  color: #284B63;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 8px 46px 0 #284B6340;
  width: 94%;
  max-width: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-size: 1.44em;
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1em;
}
.cookie-switch {
  min-width: 38px;
  height: 22px;
  background: #FFD591;
  border-radius: 11px;
  position: relative;
  transition: background 0.12s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-switch .slider {
  position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  transition: left 0.12s;
}
.cookie-switch input:checked + .slider {
  left: 18px;
  background: #F9AA33;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8em;
  color: #284B63;
  cursor: pointer;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  padding: 8px 20px;
  font-weight: 600;
  background: #F9AA33;
  color: #fff;
  box-shadow: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-modal-actions button.secondary {
  background: #EEE9E2;
  color: #284B63;
}
.cookie-modal-actions button:hover {
  background: #284B63; color: #FFD591;
}

@media (max-width: 420px) {
  .cookie-modal-content { padding: 16px 4px; }
}

/* -------------------- ACCORDION & CONTENT -------------------- */
.faq-accordion h3 {
  margin: 18px 0 8px 0;
  font-size: 1.13em;
  color: #F9AA33;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  color: #284B63;
}
.faq-accordion div {
  font-size: 1.05em;
  margin: 0 0 15px 0;
  line-height: 1.5;
  color: #233646;
  padding: 6px 0 8px 8px;
  border-left: 3px solid #F9AA33;
}

.text-section {
  margin-bottom: 16px;
}
.text-section ul {
  margin-bottom: 6px 0 0 20px;
}
.map-placeholder {
  margin-top: 16px;
  font-size: 0.95em;
  color: #666;
  background: #FFF6EC;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px dashed #FFD591;
  text-align: left;
}

/* -------------------- LISTS & PRICING -------------------- */
ul li, ol li {
  line-height: 1.8;
  font-size: 1em;
  color: #284B63;
  margin-bottom: 7px;
  list-style: none;
  position: relative;
  padding-left: 2em;
  font-family: 'Roboto', Arial, sans-serif;
}
ul li::before {
  content: '\25A0';
  color: #F9AA33;
  font-size: 1rem;
  position: absolute;
  left: 0.1em;
  top: 0.04em;
}
ul li span {
  color: #a16811;
  font-size: 0.95em;
  margin-left: 4px;
}
/* For proposal and features with ✔ or other icons: */
ul li:has(> strong), ul li:has(> em) {
  font-size: 1.08em;
  color: #2D3242;
}

ol {
  list-style-type: decimal;
  padding-left: 2.2em;
  margin-bottom: 17px;
}

/* ----- BUTTONS, FORMS, INTERACTIONS ----- */
button, .btn {
  outline: none;
  transition: box-shadow 0.12s, background 0.16s, color 0.15s;
}
button:focus-visible, .btn:focus-visible {
  box-shadow: 0 0 0 3px #F9AA3396, 0 4px 14px -6px #8882;
}

/* ----- CARD EFFECT ----- */
.card {
  background: #fcf4e6;
  border: 2px solid #EAEAEA;
  transition: border 0.22s, box-shadow 0.19s;
}
.card:hover {
  border-color: #F9AA33;
  box-shadow: 0 8px 28px 0 #F9AA3333;
}

/* ----- MICRO-INTERACTIONS & TRANSITIONS ----- */
section, .card, .testimonial-card, .btn, .cookie-banner, .mobile-menu {
  transition: box-shadow 0.12s, background 0.15s, color 0.17s;
}

/* -------------------- TYPOGRAPHY SCALE -------------------- */
@media (max-width:600px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.09rem; }
  .btn.primary, .mobile-nav a { font-size: 1em; }
}

/* -------------------- FLEXBOX MANDATES -------------------- */
/* All layout containers must use display:flex, flex-wrap where needed, etc. */
/* See container, content-grid, .card-container, .footer .container, .text-image-section, .feature-item, .testimonial-card above */

/* -------------------- RETRO/VINTAGE DECORATIVE PATTERNS -------------------- */
/* Header brand bar */
header {
  border-bottom: 6px solid #FFD591;
  background: repeating-linear-gradient(135deg, #EAEAEA 0, #EAEAEA 16px, #FFD591 16px, #FFD591 32px);
}
/* Vintage underline for h1/h2 */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  margin-top: 9px;
  width: 70px;
  height: 4px;
  background: #F9AA33;
  border-radius: 2px;
  opacity: 0.37;
}

/* --------- UTILITIES --------- */
.d-none { display:none !important; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* Prevent overlap and always ensure minimum spacing on cards/sections */
section, .card, .testimonial-card, .content-wrapper { margin-bottom: 24px; }

/* Responsive Utilities for Flex Children */
@media (max-width:900px) {
  .card-container, .content-grid, .footer .container {
    flex-direction: column;
    gap: 16px;
  }
}

/* -------------------- SCROLLBAR (retro styled) -------------------- */
::-webkit-scrollbar { width: 13px; background: #f5ecd7; }
::-webkit-scrollbar-thumb { background: #FFD591; border-radius: 8px; }

/* -------------------- HIGHLIGHT (vintage yellow) -------------------- */
::selection { background: #FFD591; color: #284B63; }

/* ----- OVERRIDES FOR CONSISTENT SPACING ----- */
main > section:last-child, main > section:last-of-type, .content-wrapper:last-of-type {
  margin-bottom: 0;
}

/* -------------------- END OF CSS -------------------- */
