/* --- CSS 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,
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;
}
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #235B4E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B56E26;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1em;
}
li+li {
  margin-top: 0.35em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #235B4E;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1.2em;
  font-size: 1.08rem;
}
strong, b {
  color: #B56E26;
  font-weight: bold;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B56E26;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}

/* ----- CONTAINER & LAYOUT ----- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(35,91,78,0.08);
  position: relative;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #235B4E;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(35,91,78,0.11);
  position: relative;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 78px;
  gap: 16px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 10px 0;
  transition: color .2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  background: #B56E26;
  width: 0;
  transition: width 0.2s;
  position: absolute;
  left: 0; bottom: 0px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B56E26;
}
.btn-primary {
  background: #B56E26;
  color: #fff !important;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(181,110,38,0.13);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s, transform 0.12s, box-shadow 0.2s;
  margin-left: 14px;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #8C4800;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 3px 16px 0 rgba(181,110,38,0.18);
}

/* --- Burger & Mobile Menu --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 1500;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #235B4E;
  color: #fff;
  box-shadow: -4px 0 16px 0 rgba(35,91,78,0.19);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.88,0,.52,1.05);
  padding: 30px 18px 25px 24px;
  pointer-events: none;
  opacity: 0.94;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B56E26;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px 0 10px 2px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B56E26;
  color: #fff;
}

/* Overlay when mobile menu open */
body.mobile-menu-open:before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.23);
  z-index: 2050;
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 100vw;
    min-width: unset;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

/* --- HERO & CTA SECTIONS --- */
.hero {
  background: #EDE9E3;
  padding: 48px 0 67px 0;
  border-radius: 0 0 36px 36px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 60px 0 rgba(181,110,38,0.09);
  margin-bottom: 56px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
}
.hero h1, .hero .subheadline {
  color: #235B4E;
}
@media (max-width: 800px) {
  .hero {
    padding: 25px 0 34px 0;
    border-radius: 0 0 22px 22px;
  }
}

/* --- FLEXBOX LAYOUT PATTERNS --- */
.feature-grid, .service-list, .testimonial-list, .card-container, .content-grid, .feature-bullets, .value-points {
  display: flex;
  flex-wrap: wrap;
}
.feature-grid, .card-container, .service-list, .testimonial-list, .content-grid {
  gap: 24px;
  margin-bottom: 24px;
}
.feature-bullets, .value-points {
  flex-direction: row;
  gap: 18px;
  margin-bottom: 16px;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 26px 22px 24px 22px;
  border-radius: 15px;
  border: 1.5px solid #EDE9E3;
  box-shadow: 0 2px 9px 0 rgba(35,91,78,0.051);
  min-width: 230px;
  max-width: 315px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.14s;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 6px 28px 0 rgba(35,91,78,0.13);
  transform: translateY(-6px) scale(1.03);
  z-index: 15;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 9px 0 rgba(35,91,78,0.051);
}
.text-section,
.text-image-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.text-image-section {
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2.5px solid #B56E26;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(181,110,38,0.09);
  padding: 32px 26px;
  min-width: 250px;
  max-width: 380px;
  margin-bottom: 20px;
  color: #222;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-style: italic;
  color: #235B4E;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.testimonial-author {
  color: #B56E26;
  font-size: 1rem;
  font-weight: bold;
  align-self: flex-start;
}
.testimonial-card:hover {
  box-shadow: 0 14px 44px 0 rgba(35,91,78,0.19);
  transform: translateY(-6px) scale(1.035);
  z-index: 10;
}

/* --- LISTS, DLs, FAQ --- */
dt {
  font-weight: bold;
  color: #235B4E;
  font-size: 1.08rem;
  margin-top: 17px;
}
dd {
  margin-bottom: 9px;
  color: #333;
  margin-left: 0.9em;
}

/* --- PRICING, BADGES, ETC. --- */
.price {
  background: #B56E26;
  color: #fff;
  border-radius: 10px;
  padding: 2px 12px 2px 12px;
  font-size: 1.02rem;
  margin-left: 11px;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* --- BULLETS for features --- */
.feature-bullets li, .value-points li {
  background: #B56E26;
  color: #fff;
  border-radius: 11px;
  padding: 4px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1rem;
  margin-right: 4px;
}

/* --- MAP EMBED & CONTACT INFO --- */
.contact-info p {
  margin-bottom: 6px;
}
.map-embed {
  margin-top: 7px;
  font-size: 0.96rem;
  color: #235B4E;
  background: #EDE9E3;
  border-radius: 9px;
  padding: 6px 12px;
  display: inline-block;
}

/* --- FOOTER --- */
footer {
  background: #235B4E;
  color: #fff;
  padding: 34px 0 12px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.04rem;
  transition: color 0.13s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B56E26;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-size: 0.97rem;
  align-items: center;
  color: #D8E4DF;
  margin-bottom: 7px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3.5px solid #B56E26;
  box-shadow: 0 -7px 32px 0 rgba(35,91,78,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  z-index: 2300;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #222;
  animation: cookieBannerIn 0.5s cubic-bezier(.83,0,.75,1.01);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0.67; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  max-width: 570px;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-accept, .cookie-reject, .cookie-settings-btn {
  background: #B56E26;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: bold;
  padding: 10px 22px;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.13s, color 0.13s, transform 0.12s;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #235B4E;
  color: #fff;
  transform: scale(1.04);
}
.cookie-reject {
  background: #fff;
  color: #B56E26;
  border: 2px solid #B56E26;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #B56E26;
  color: #fff;
}
.cookie-settings-btn {
  background: #EDE9E3;
  color: #235B4E;
  border: 2px solid #235B4E;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #235B4E;
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,23,19,0.65);
  z-index: 2310;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalOverlayIn 0.37s cubic-bezier(.88,0,.52,1.05);
}
@keyframes cookieModalOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #235B4E;
  border-radius: 17px;
  padding: 40px 22px 32px 22px;
  box-shadow: 0 9px 31px 0 rgba(35,91,78,0.13);
  min-width: 320px;
  max-width: 96vw;
  min-height: 150px;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalIn 0.51s cubic-bezier(.82,0,.28,1.02);
}
@keyframes cookieModalIn {
  from { transform: scale(0.895); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #B56E26;
  margin-bottom: 12px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-toggle-group {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #EDE9E3;
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: box-shadow 0.17s;
  box-shadow: 0 2px 8px 0 rgba(181,110,38,0.06);
}
.cookie-toggle:checked {
  background: #B56E26;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px; top: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s;
  box-shadow: 0 2px 8px 0 rgba(35,91,78,0.18);
}
.cookie-toggle:checked:before {
  left: 18px;
  background: #fff;
}
.cookie-category-essential {
  font-weight: bold;
  color: #235B4E;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #B56E26;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #235B4E;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
  .container { padding: 0 10px; }
  .feature-grid, .service-list, .testimonial-list, .card-container, .content-grid  { gap: 16px; }
}
@media (max-width: 768px) {
  .footer-nav, .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .feature-grid, .service-list, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item, .service-item, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .section {
    margin-bottom: 40px;
    padding: 29px 7vw;
  }
  .hero {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 38px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 14px 10px;
    gap: 14px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.38rem !important; }
  h2 { font-size: 1.08rem !important; }
  h3, .price, .feature-bullets li, .value-points li { font-size: 0.98rem !important; }
  .footer-info { font-size: 0.95rem; }
  .section { padding: 15vw 3vw; }
  .hero { padding: 13vw 0 11vw 0; }
}

/* --- VIBRANT, ENERGETIC MICRO-INTERACTIONS --- */
.btn-primary,
.cookie-accept,
.cookie-reject,
.cookie-settings-btn {
  box-shadow: 0 2px 10px 0 rgba(181,110,38,0.09);
  transition: background 0.18s, box-shadow 0.17s, transform 0.13s, color 0.13s;
}
.btn-primary:active,
.cookie-accept:active,
.cookie-reject:active {
  box-shadow: 0 0px 0px 0 rgba(181,110,38,0.03);
  transform: scale(0.98);
}
.feature-item img,
.testimonial-card img {
  filter: drop-shadow(0 2px 18px #EDE9E3);
  transition: filter 0.18s;
  height: 46px;
  width: 46px;
}
.feature-item:hover img {
  filter: drop-shadow(0 3px 34px #FFD383);
}

/* --- NON-USED/INVISIBLE ELEMENTS --- */
[hidden] { display: none !important; }

/* --- UTILITY CLASSES (EXTRA) --- */
.mt-3 { margin-top: 24px!important; }
.mb-0 { margin-bottom: 0!important; }

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:900,700,600,500,400&display=swap');

body, html, input, textarea, select, button {
  font-family: Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,.btn-primary,.main-nav a,.mobile-nav a,.cookie-consent-banner,.feature-bullets li,.value-points li {
  font-family: 'Montserrat', Arial, sans-serif;
}
section {
  padding: 20px 0;
}
