/* CSS RESET & BASE TYPOGRAPHY */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAFBFC;
  color: #274E39;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
}
*, *:before, *:after {box-sizing: inherit;}
img {max-width: 100%; height: auto; display: block; border: 0;}
a {color: #B03E49; text-decoration: none; transition: color 0.2s;}
a:hover, a:focus {color: #E8727E; text-decoration: underline;}

/* TYPOGRAPHY SETTINGS */
h1, .h1 {font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 2.5rem; color: #33694D; margin-bottom: 12px; letter-spacing: -1px; line-height: 1.1;}
h2, .h2 {font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 2rem; color: #33694D; margin-bottom: 10px; line-height: 1.1;}
h3, .h3 {font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.35rem; color: #274E39; margin-bottom: 8px;}
h4, .h4 {font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.1rem; color: #274E39; margin-bottom: 6px;}
p, ul, ol, dl {font-family: 'Lato', Arial, sans-serif; color: #274E39; font-size: 1rem; margin-bottom: 12px;}
strong, b {font-weight: 700; color: #33694D;}
ul {
  padding-left: 28px;
  margin-bottom: 24px;
  color: #274E39;
}
ol {
  padding-left: 28px;
  margin-bottom: 24px;
}
dl {margin-bottom: 16px;}
dt {font-weight: 700; margin-top: 12px;}
dd {margin-left: 0;}

/* BRAND COLORS (soft_pastel palette) */
:root {
  --primary: #33694D;
  --primary-dark: #274E39;
  --secondary: #CED5C9;
  --background: #FAFBFC;
  --accent: #E8727E;
  --accent-dark: #B03E49;
  --outline: #E3E6EA;
  --pastel-green: #ECF4ED;
  --pastel-pink: #F9E9EC;
  --pastel-yellow: #FFF7E2;
  --pastel-blue: #E7EFF8;
  --white: #ffffff;
  --shadow: rgba(51, 105, 77, 0.07);
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 6px 18px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CONTENT WRAPPER */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}

/* FLEX CONTAINERS */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--pastel-green);
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 26px rgba(51,105,77,0.14);
  transform: translateY(-2px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-yellow);
  border-radius: 12px;
  padding: 18px 18px 16px;
  min-width: 180px;
  box-shadow: 0 1.5px 7px var(--shadow);
  margin-bottom: 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--pastel-pink);
  border-radius: 18px;
  box-shadow: 0px 6px 20px rgba(176,62,73, 0.09);
  padding: 20px 28px;
  margin-bottom: 20px;
  max-width: 630px;
  font-family: 'Lato', Arial, sans-serif;
  color: #274E39;
}
.testimonial-card p {
  color: #274E39;
  font-size: 1.1rem;
  line-height: 1.5;
  font-style: italic;
}
.testimonial-card span, .testimonial-card strong {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
  margin-top: 6px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark) 84%);
  color: var(--white);
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 15px 36px;
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.16s, transform 0.17s;
  letter-spacing: 0.3px;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  box-shadow: 0 6px 22px rgba(232,114,126,0.10);
  transform: translateY(-1px) scale(1.02);
}

/* NAVIGATION */
header {
  width: 100%;
  padding: 0;
  background: var(--white);
  box-shadow: 0 2px 9px var(--shadow);
  z-index: 12;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 14px 20px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: #33694D;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.19s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-green);
  color: var(--accent);
  outline: none;
}
header img {
  height: 48px;
  width: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 1101;
  font-size: 2.3rem;
  width: 48px;
  height: 48px;
  background: var(--pastel-green);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(236,244,237,0.97);
  box-shadow: -6px 0 28px rgba(51,105,77,0.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 30px;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: var(--primary-dark);
  cursor: pointer;
  z-index: 1201;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--primary-dark);
  font-weight: 600;
  background: var(--pastel-green);
  border-radius: 16px;
  padding: 17px 36px;
  width: 90vw;
  text-align: center;
  font-size: 1.24rem;
  transition: background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
@media (max-width: 1025px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1026px) {
  .mobile-menu { display: none!important; }
}

/* Main spacing rules (all content cards) */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container > *,
.card-grid > *,
.content-grid > *,
.feature-item,
.card,
.testimonial-card {
  margin-bottom: 20px;
}

/* MAP & ICONS */
.map { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.map img { height: 24px; width: 24px; }
.header img, .footer-top img { display: block; }
li img, p img, a img { vertical-align: middle; height: 22px; width: 22px; margin-right: 7px; }

/* ADDRESS, FOOTER */
footer {
  width: 100%;
  background: var(--pastel-green);
  color: #274E39;
  padding: 58px 0 14px 0;
  box-shadow: 0 -2px 10px var(--shadow);
  border-radius: 28px 28px 0 0;
}
footer .container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
}
.footer-top {
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer nav a {
  font-size: 1.02rem;
  color: #33694D;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--pastel-yellow);
  color: var(--accent-dark);
  outline: none;
}
footer address {
  font-weight: 400;
  font-size: 1rem;
  font-style: normal;
  margin-bottom: 10px;
}
footer small {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.98rem;
  color: #B03E49;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1700;
  width: 100vw;
  background: var(--pastel-pink);
  color: #274E39;
  box-shadow: 0 -2px 20px rgba(176,62,73,0.08);
  padding: 26px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.32s cubic-bezier(.91,.01,.36,.97);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #274E39;
  font-size: 1.07rem;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 22px;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.17s, color 0.16s, box-shadow 0.14s;
}
.cookie-banner .accept {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent-dark);
}
.cookie-banner .settings {
  background: var(--pastel-yellow);
  color: var(--primary-dark);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--pastel-green);
  color: var(--accent);
}
.cookie-banner .reject {
  background: var(--pastel-green);
  color: #B03E49;
  border: 1px solid #B03E49;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #33694D;
  border-color: #33694D;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1850;
  background: rgba(38, 82, 66, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.41s;
}
@keyframes fadeInModal {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal-content {
  background: var(--pastel-blue);
  border-radius: 22px;
  padding: 38px 28px 32px;
  box-shadow: 0px 10px 36px rgba(51,105,77,0.17);
  min-width: 315px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  animation: modalBumpIn 0.45s;
}
@keyframes modalBumpIn {
  from {transform: scale(0.87); opacity: 0.5;}
  to {transform: scale(1); opacity: 1;}
}
.cookie-modal-content h2 {
  font-size: 1.45rem;
  color: #33694D;
  margin-bottom: 7px;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pastel-green);
  border-radius: 10px;
  padding: 12px 16px 10px;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
}
.cookie-category.essential {
  opacity: 0.7;
  cursor: default;
}
.cookie-modal-content .setting-actions {
  display: flex;
  gap: 19px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-content .close {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.76rem;
  background: none;
  border: none;
  color: #B03E49;
  cursor: pointer;
}
/* TOGGLE SWITCH */
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  height: 26px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle label {
  position: relative;
  display: block;
  width: 46px;
  height: 24px;
  background: var(--pastel-blue);
  border-radius: 24px;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle label::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #B03E49;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked + label {
  background: var(--accent);
}
.cookie-toggle input[type="checkbox"]:checked + label::after {
  left: 23px;
  background: var(--primary);
}

/* FORMS, INPUTS (not present, base style) */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 10px;
  background: var(--pastel-green);
  border: 1px solid var(--outline);
  font-size: 1.08rem;
  padding: 12px 14px;
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
    max-width: 100vw;
  }
  header .container {
    flex-direction: row;
    padding: 10px 11px;
  }
  .section, section {
    padding: 28px 7px;
    margin-bottom: 40px;
    border-radius: 11px;
  }
  h1, .h1 { font-size: 1.65rem; }
  h2, .h2 { font-size: 1.2rem; }
  h3, .h3 { font-size: 1.08rem; }
  .btn-primary { font-size: 1rem; padding: 13px 22px; }
  .content-wrapper, .text-section {
    gap: 14px;
    padding: 0 1px;
  }
  .card, .feature-item, .testimonial-card {
    padding: 16px 13px;
    min-width: 0;
  }
  .card-container,
  .card-grid,
  .content-grid {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .footer-top img {
    height: 36px;
  }
  .cookie-modal-content {
    padding: 22px 7px 18px;
    min-width: 0;
  }
  footer {
    padding: 24px 0 10px 0;
    border-radius: 14px 14px 0 0;
  }
}

@media (max-width: 450px) {
  .cookie-modal-content { max-width: 98vw; padding: 8vw 2vw; }
  .mobile-nav a { font-size: 1rem; padding: 13px 6px; }
}

/* TRANSITION & MICRO-INTERACTIONS */
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.21s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 9px 26px rgba(41,105,77,0.11);
  transform: translateY(-2.5px) scale(1.02);
}

.btn-primary:active {
  transform: scale(0.97);
}

.cookie-banner, .cookie-modal-content {
  will-change: transform, opacity;
}

/* Z-INDEX LAYERS */
header { z-index: 12; }
.mobile-menu { z-index: 1200; }
.mobile-menu-toggle { z-index: 1101; }
.cookie-banner { z-index: 1700; }
.cookie-modal { z-index: 1850; }

/* ENSURE NO GRID OR COLUMNS */
/* -- ALL LAYOUTS USE FLEXBOX, not grid/columns -- */

/* END OF STYLE */
