/* =====================  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-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.5;
  background: #fff;
  color: #213144;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.23,1,.32,1);
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}

/* ==================  VARIABLES (NO CSS custom properties for compat)  ================== */
:root {
  /* Brand Colors */
  /* primary: #156439 (deep green), secondary: #19334D (blue), accent: #F1E6CA (cream) */
}

/* ===================  TYPOGRAPHY (ARTISTIC & CREATIVE)  =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #156439;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 #f1e6ca;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #19334D;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #156439;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #213144;
}
p, ul, li, blockquote, span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #213144;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  border-left: 4px solid #19334D;
  color: #156439;
  background: #F1E6CA;
  padding: 14px 20px;
  margin: 32px 0;
  border-radius: 12px;
  font-style: italic;
}

/* ===================  LAYOUT & CONTAINERS  =================== */
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 40px 24px;
  margin-bottom: 60px;
  box-shadow: 0 6px 32px rgba(25,51,77,.10), 0 1.5px 7px rgba(22,100,57,.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: #F1E6CA;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(25,51,77,0.07);
  padding: 32px 20px;
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(21,100,57,0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 250px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px 24px;
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(25,51,77,.10);
  border-left: 8px solid #156439;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #19334D;
  margin-bottom: 8px;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #213144;
  opacity: .85;
  font-style: italic;
  letter-spacing: 0.01em;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 26px 18px;
  box-shadow: 0 2px 11px rgba(21,100,57,.08);
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow .25s cubic-bezier(.23,1,.32,1),transform .22s cubic-bezier(.23,1,.32,1);
}
.feature-item:hover {
  box-shadow: 0 8px 30px rgba(21,100,57,0.14);
  transform: translateY(-4px) scale(1.025);
  background: #F1E6CA;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

/* ===================  HEADER & NAVIGATION  =================== */
header {
  background: #19334D;
  box-shadow: 0 2px 22px rgba(25,51,77,0.07);
  padding: 0;
  position: relative;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 20px 8px 20px;
}
header a img {
  height: 47px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  margin-right: 18px;
}
.main-nav a {
  color: #F1E6CA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 11px;
  transition: background .16s cubic-bezier(.23,1,.32,1), color .13s cubic-bezier(.23,1,.32,1);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #156439;
  color: #fff;
}
.btn-primary {
  background: #156439;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 32px;
  margin-left: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(21,100,57,0.09);
  border: 2px solid #156439;
  cursor: pointer;
  transition: background .15s, color .14s, box-shadow .22s cubic-bezier(.23,1,.32,1),border .16s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #156439;
  box-shadow: 0 7px 30px rgba(25,51,77,0.08);
  border-color: #F1E6CA;
}
.btn-secondary {
  background: #fff;
  color: #156439;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 11px 26px;
  border-radius: 30px;
  margin-top: 10px;
  border: 2px solid #156439;
  transition: background .19s, color .13s, border .16s;
  box-shadow: 0 2px 8px rgba(21,100,57,0.07);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #156439;
  color: #fff;
  border-color: #156439;
}

/* ===================  MOBILE MENU  =================== */
.mobile-menu-toggle {
  display: none;
  background: #156439;
  color: #fff;
  border-radius: 50%;
  padding: 11px 14px;
  font-size: 1.45em;
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: background .16s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F1E6CA;
  color: #156439;
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  width: 100%;
  height: 100vh;
  background: #19334D;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.23,1,.32,1);
  box-shadow: -2px 0 22px rgba(25,51,77,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #156439;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2em;
  padding: 0 10px;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  transition: background .13s;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F1E6CA;
  color: #19334D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  padding: 0 34px;
  gap: 20px;
}
.mobile-nav a {
  color: #F1E6CA;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  font-weight: 600;
  padding: 13px 0 13px 06px;
  border-radius: 8px;
  min-width: 170px;
  display: block;
  transition: background .17s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #156439;
  color: #fff;
}
.main-nav, .btn-primary {
  /* Hide for mobile - show for desktop only */
}

/* ==========  MAIN & SECTION STYLING  ========== */
main {
  flex: 1 1 auto;
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.map-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px 0;
  background: #F1E6CA;
  border-radius: 15px;
  min-height: 120px;
  padding: 22px 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-info img {
  width: 20px;
  height: 20px;
}

/* ==========  FOOTER  ========== */
footer {
  background: #19334D;
  color: #F1E6CA;
  padding: 32px 0 24px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #F1E6CA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01em;
  opacity: 0.9;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background .14s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F1E6CA;
  color: #156439;
}
footer p {
  font-size: 0.99em;
  color: #F1E6CA;
  opacity: .87;
}

/* ==========  OTHER UTILITY & VISUAL ELEMENTS  ========== */
.product-descriptions {
  margin: 36px 0 0 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(25,51,77,.06);
  padding: 20px 24px;
}
.product-descriptions h3 {
  color: #19334D;
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-descriptions ul {
  margin-left: 12px;
}
/* Links inside content */
.content-wrapper a, .text-section a {
  transition: color .13s, background .17s;
  text-decoration: underline;
}
.content-wrapper a.btn-primary, .content-wrapper a.btn-secondary,
.text-section a.btn-primary, .text-section a.btn-secondary {
  text-decoration: none;
}
/* Artistic details (for creative/artistic look) */
.content-wrapper {
  /* Border with artistic mark */
  position: relative;
  overflow: visible;
}
.content-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 32px;
  width: 60px;
  height: 7px;
  background: #F1E6CA;
  border-radius: 8px 8px 32px 32px;
  box-shadow: 0 1px 6px 1px rgba(241,230,202,0.14);
  z-index: 2;
}
.text-section {
  position: relative;
}
.text-section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -17px;
  left: 22px;
  width: 50px;
  height: 5px;
  background: #156439;
  opacity: .11;
  border-radius: 5px 14px 12px 12px;
  z-index: 1;
}

hr {
  border: none;
  margin: 24px 0;
  border-bottom: 2px dashed #19334D;
  opacity: .17;
}

/* ===================  COOKIE CONSENT BANNER  =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: #19334D;
  color: #F1E6CA;
  box-shadow: 0 -2px 18px rgba(25,51,77,0.11);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: cookiebanner-slidein .7s cubic-bezier(.23,1,.32,1);
}
@keyframes cookiebanner-slidein {
  0% { transform: translateY(80%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner p {
  flex: 2 1 200px;
  font-size: 1rem;
  color: #F1E6CA;
  margin: 0 14px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  padding: 9px 19px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  font-weight: 600;
  transition: background .16s,color .1s, box-shadow .14s;
}
.cookie-banner .cookie-accept {
  background: #156439;
  color: #fff;
  border: 2px solid #156439;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #fff;
  color: #156439;
  border-color: #F1E6CA;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #19334D;
  border: 2px solid #19334D;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #156439;
  color: #fff;
  border-color: #156439;
}
.cookie-banner .cookie-settings {
  background: #F1E6CA;
  color: #19334D;
  border: 2px solid #19334D;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #19334D;
  color: #F1E6CA;
  border-color: #F1E6CA;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%) scale(1);
  background: #fff;
  color: #213144;
  max-width: 420px;
  width: 90vw;
  z-index: 1003;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(25,51,77,0.16);
  padding: 36px 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-appear .3s cubic-bezier(.23,1,.32,1);
}
@keyframes cookie-modal-appear {
  0% { opacity: 0; transform: translate(-50%, -20%) scale(.85); }
  100% { opacity: 1; transform: translate(-50%, -58%) scale(1); }
}
.cookie-modal h2 {
  color: #19334D;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0 4px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #156439;
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
}
.cookie-modal .cookie-locked {
  opacity: 0.8;
  font-style: italic;
  color: #999;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 16px;
  border-radius: 12px;
  background: #156439;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background .15s, color .13s;
}
.cookie-modal button.close-modal {
  background: #F1E6CA;
  color: #19334D;
  border: 2px solid #19334D;
}
.cookie-modal button.close-modal:hover {
  background: #19334D;
  color: #F1E6CA;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,51,77,0.32);
  z-index: 1002;
  animation: cookie-modal-bg 0.25s;
}
@keyframes cookie-modal-bg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ===================  RESPONSIVE DESIGN  =================== */
@media (max-width: 1150px) {
  .feature-grid, .card-container, .content-grid {
    gap: 16px;
  }
  .feature-item, .card {
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .card {
    min-width: 0;
    width: 100%;
  }
  .container {
    padding: 0 13px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  header .container {
    flex-direction: row;
    gap: 7px;
    padding: 8px 10px 8px 10px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .content-wrapper {
    padding: 22px 08px;
  }
  section {
    margin-bottom: 38px;
    padding-top: 32px;
  }
  .map-embed {
    padding: 12px;
    min-height: 60px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 3vw;
  }
  .content-wrapper {
    padding: 13px 2px;
  }
  .text-section {
    padding: 13px 5px;
  }
  .section {
    padding: 18px 3px;
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ===================  MICRO-INTERACTIONS & TRANSITIONS  =================== */
.card, .feature-item, .testimonial-card {
  transition: box-shadow .23s cubic-bezier(.23,1,.32,1),background .16s,
              transform .14s cubic-bezier(.23,1,.32,1);
}
.card:hover, .card:focus {
  box-shadow: 0 9px 32px rgba(25,51,77,.12);
  transform: translateY(-3px) scale(1.015);
  background: #F1E6CA;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(25,51,77,.10);
  background: #F1E6CA;
}

/* ===================  ARTISTIC FONTS FALLBACKS  =================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* =================== PRINT SUPPORT  =================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  section, .container, main { width: 100% !important; padding: 0 !important; box-shadow: none !important; }
}
