/* 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,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, menu, 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, main, nav, output, ruby, section, summary, time, mark,
audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8F8F8;
  color: #233b2a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #184560;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #387C6D;
  outline: none;
}
ul, ol {
  margin-left: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}
li {
  margin-bottom: 10px;
}
button, .cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  color: #184560;
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #387C6D; /* Secondary green accent */
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, .content-wrapper > ul, .content-wrapper > ol, table {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
  color: #2C3727;
}
strong {
  font-weight: 700;
  color: #184560;
}

/* GLOBAL LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* SECTION SPACING & CARDS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F8F8F8;
  border-radius: 22px;
  box-shadow: 0 1px 5px rgba(40, 54, 24, 0.04);
  position: relative;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(40,54,24,0.1);
  position: relative;
  padding: 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* GRID-LIKE CONTENT */
.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;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: #ECE6DC;
  border-left: 5px solid #5CA495;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px 0 rgba(24,69,96,0.07);
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 14px 0 rgba(24,69,96,0.16);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #184560;
  margin-bottom: 0;
}
.testimonial-card div {
  font-size: 0.95rem;
  color: #387C6D;
  font-weight: 600;
}

/* FEATURE LIST ELEMENTS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F8F3;
  padding: 18px;
  border-radius: 11px;
  margin-bottom: 18px;
}

/* SPECIAL GRIDS */
.model-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.model-grid > div {
  flex: 1 1 230px;
  min-width: 230px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(24,69,96,0.06);
  padding: 21px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.model-grid img {
  margin-bottom: 8px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(60, 74, 41, 0.06);
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.blog-card:hover {
  box-shadow: 0 4px 16px 2px rgba(92,164,149,0.13);
}
.blog-card h3 {
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.blog-card span {
  display: inline-block;
  font-size: 0.92rem;
  color: #5CA495;
  background: #EDF7F4;
  border-radius: 7px;
  padding: 3px 10px;
  margin-top: 8px;
}

/* BUTTONS & CTAS */
.cta-primary, button, .mobile-menu-toggle, .mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  background: #5CA495;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px 0 rgba(92,164,149,0.14);
  margin: 8px 0;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.16s;
  cursor: pointer;
}
.cta-primary:focus,
.cta-primary:hover,
button:focus,
button:hover {
  background: #387C6D;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(56,124,109,0.15);
  transform: translateY(-1px) scale(1.03);
}
.cta-primary:active { background: #184560; }

.mobile-menu-toggle {
  background: #f5f5f2;
  color: #184560;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(24,69,96,0.06);
  margin-left: auto;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e3ede8;
}
.mobile-menu-close {
  background: none;
  color: #184560;
  font-size: 2.2rem;
  margin-bottom: 24px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ECE6DC;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #184560;
  transition: color 0.16s, background 0.14s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #EDF7F4;
  color: #387C6D;
}

button, .cta-primary {
  outline: none;
  border: none;
}

/* NAVIGATION HEADER */
header {
  width: 100%;
  background: #F4F6F2;
  box-shadow: 0 2px 8px 0 rgba(24,69,96,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0 18px 0;
  flex-wrap: wrap;
  justify-content: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.018em;
  color: #184560;
  padding: 7px 14px;
  border-radius: 15px;
  transition: background 0.18s, color 0.15s;
  font-size: 1rem;
  position: relative;
}
header nav a:not(.cta-primary):hover,
header nav a:not(.cta-primary):focus {
  background: #EDF7F4;
  color: #5CA495;
}
header nav a.cta-primary {
  margin-left: 12px;
  margin-right: 0;
}
header nav a img {
  width: 128px;
  margin-right: 24px;
  vertical-align: middle;
  display: inline;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(240,242,237,0.98);
  box-shadow: 0 8px 32px 0 rgba(24,69,96,0.18);
  z-index: 8889;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.63,0,0.22,1);
  overflow-y: auto;
  padding: 30px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
  width: 100%;
  align-items: flex-start;
}

/* MAIN & FOOTER LAYOUT */
main {
  margin-top: 20px;
  margin-bottom: 78px;
}
footer {
  background: #F4F6F2;
  padding: 36px 0 22px 0;
  border-top: 1px solid #cfd8c0;
  color: #233b2a;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
  justify-content: center;
}
footer nav a {
  color: #184560;
  font-weight: 500;
  font-size: 0.96rem;
  transition: color 0.14s;
  margin-bottom: 5px;
  border-radius: 11px;
  padding: 7px 11px;
}
footer nav a:hover,
footer nav a:focus {
  color: #387C6D;
  background: #e9f5ef;
}
footer address {
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3727;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
footer img {
  width: 18px;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle;
}
footer a {
  color: #5CA495;
  font-weight: 600;
  transition: color 0.14s;
}
footer a:hover {
  color: #184560;
}

/* OTHER ELEMENTS & TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px 0 rgba(24,69,96,0.07);
  font-size: 1rem;
}
thead tr {
  background: #EDF7F4;
}
th, td {
  text-align: left;
  padding: 12px 11px;
  border-bottom: 1px solid #e5eae4;
}
th {
  color: #184560;
  font-size: 1.03rem;
}
tl {
  color: #387C6D;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ORGANIC SHAPES & DECORATIVE */
.section {
  background: #F8F8F8 url('data:image/svg+xml;utf8,<svg width="600" height="120" xmlns="http://www.w3.org/2000/svg"><ellipse cx="120" cy="60" rx="80" ry="25" fill="%23EDF7F4" opacity="0.20"/></svg>') bottom right no-repeat;
  background-size: 240px 65px;
}
.card, .testimonial-card, .blog-card, .model-grid > div {
  border-radius: 1.2em 1em 1.6em 0.9em / 1.6em 1em 1.2em 1em;
}

/* SERVICE LIST */
.service-list {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
}
.service-list li {
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(92,164,149,0.08);
  padding: 18px 14px;
  color: #184560;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
}
.service-list span {
  display: inline-block;
  color: #5CA495;
  background: #e9f5ef;
  border-radius: 6px;
  padding: 2px 9px;
  margin-top: 6px;
  font-size: 0.95rem;
}

/* Animations */
.cta-primary, .mobile-menu-toggle, .mobile-menu-close, button {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.16s;
}
.section, .card, .testimonial-card, .feature-item, .blog-card {
  transition: box-shadow 0.18s, background 0.18s;
}

.blog-card:active, .testimonial-card:active { transform: scale(0.98); }
.feature-item:active { transform: scale(0.98); }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #ECE6DC;
  box-shadow: 0 -4px 18px 0 rgba(24,69,96,0.11);
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  z-index: 9988;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 18px;
  font-size: 1rem;
}
.cookie-banner p {
  color: #233b2a;
  margin-bottom: 0;
  flex: 1 1 240px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #5CA495;
  color: #fff;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(92,164,149,0.09);
  padding: 10px 22px;
  transition: background 0.16s;
}
.cookie-banner .cookie-reject {
  background: #ECE6DC;
  color: #184560;
  border: 1px solid #d2cabf;
}
.cookie-banner .cookie-settings {
  background: #F4F6F2;
  color: #184560;
  border: 1px solid #cfd8c0;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #387C6D;
  color: #fff;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #dcdbd3;
  color: #184560;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #e9f5ef;
  color: #184560;
}

/* Cookie Modal */
.cookie-modal-overlay {
  background: rgba(60,74,41,0.38);
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #F8F8F8;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(60,74,41,0.14);
  max-width: 410px;
  min-width: 290px;
  width: 95vw;
  padding: 27px 33px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookieSlideIn 0.38s ease 1;
  position: relative;
}
@keyframes cookieSlideIn {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: #184560;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #387C6D;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5CA495;
  width: 18px;
  height: 18px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 17px;
  background: none;
  color: #184560;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: none;
  transition: background 0.12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #ECE6DC;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1080px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .model-grid > div, .card {
    padding: 18px 8px;
  }
  .card-grid, .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .section {
    margin-bottom: 48px;
    padding: 27px 7px;
  }
  .content-wrapper, .card-container, .content-grid, .model-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card, .blog-card, .card {
    padding: 14px 10px;
  }
  main {
    margin-bottom: 98px;
  }
  .footer nav {
    gap: 11px;
  }
}
@media (max-width:520px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .testimonial-card, .card, .blog-card {
    padding: 10px 6px;
  }
  .cookie-banner {
    font-size: 0.96rem;
    padding: 14px 4px 12px 8px;
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner .cookie-btn-group { flex-direction: column; gap: 7px; }
}

/* UTILITIES */
[hidden] {
  display: none !important;
}

/* ORGANIC/NATURE VISUALS */
.card, .testimonial-card, .blog-card, .model-grid > div {
  box-shadow: 0 2px 12px 2px rgba(35,59,42,0.07), 0 0.5px 4px 0px #e9e5d9;
}
.content-wrapper > ul > li img, 
.content-wrapper > ul > li > img,
.service-list li img {
  width: 26px;
  vertical-align: middle;
  margin-right: 13px;
  margin-top: -2px;
}

/* FORM INPUTS (if present) */
input, select, textarea {
  border-radius: 11px;
  border: 1px solid #c5d4ca;
  font-size: 1rem;
  padding: 11px 14px;
  margin-bottom: 11px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F6F2;
  box-shadow: 0 1px 4px 0 rgba(92,164,149,0.03);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #5CA495;
  background: #EDF7F4;
  box-shadow: 0 1px 12px 0 rgba(92,164,149,0.12);
}

/* BLOG CATEGORY BUTTONS */
.content-wrapper > div button {
  background: #F6F8F3;
  color: #387C6D;
  border: 1px solid #5CA495;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  font-size: 0.98rem;
  margin: 3px 8px 3px 0;
  padding: 7px 18px;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.content-wrapper > div button:hover,
.content-wrapper > div button:focus {
  background: #e9f5ef;
  color: #184560;
  border-color: #184560;
}

/* Hide scrollbar for mobile menu overlay where possible */
.mobile-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
