/* 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;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F0F7F4;
  color: #24504D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #24504D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BCA16D;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
strong {
  font-weight: 600;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24504D;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #24504D;
  line-height: 1.65;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(36,80,77,0.08);
}

@media (max-width: 1024px) {
  .section {
    padding: 32px 0;
  }
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 28px 24px;
  flex: 1 1 320px;
  box-shadow: 0 2px 10px 0 rgba(36,80,77,0.06);
  transition: box-shadow 0.22s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(36,80,77,0.15);
  transform: translateY(-4px);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F0F7F4;
  color: #15403C;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(36,80,77,0.06);
  min-width: 250px;
  max-width: 480px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.11s;
}
.testimonial-card p {
  color: #1E3937;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 1.5;
}
.testimonial-card span {
  color: #486363;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(36,80,77,0.18);
  transform: translateY(-2px);
}

/* Features, Services, Lists */
.content-wrapper > ul, .text-section > ul, .content-wrapper > ol, .text-section > ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-wrapper > ul li, .text-section > ul li, .content-wrapper > ol li, .text-section > ol li {
  background: none;
  padding-left: 0;
}
.content-wrapper > ul li img, .text-section > ul li img, .content-wrapper > ol li img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

/* BUTTONS */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 38px;
  border-radius: 100px;
  background: #24504D;
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(36,80,77,0.06);
  transition: background 0.18s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
  margin: 8px 0;
  letter-spacing: 0.1em;
}
.cta-btn:hover, .cta-btn:active, .cta-btn:focus {
  background: #1B3635;
  color: #BCA16D;
  box-shadow: 0 5px 16px 0 rgba(36,80,77,0.12);
  transform: translateY(-2px);
  outline: none;
}
.secondary-cta {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: 60px;
  background: #fff;
  color: #24504D;
  border: 2px solid #24504D;
  margin-top: 8px;
  transition: background 0.18s, color 0.17s, border-color 0.17s;
  cursor: pointer;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #24504D;
  color: #fff;
  border-color: #BCA16D;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(36,80,77,0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header > .container {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  min-height: 78px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #24504D;
  font-size: 1.02rem;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.14s, color 0.16s;
}
.main-nav a:hover, .main-nav a:active, .main-nav a:focus {
  background: #F0F7F4;
  color: #BCA16D;
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.0rem;
  background: none;
  color: #24504D;
  border: none;
  cursor: pointer;
  padding: 8px 17px;
  margin-left: 8px;
  border-radius: 6px;
  transition: background 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E9EFE9;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  box-shadow: 2px 0 38px 0 rgba(36,80,77,0.16);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.69,.07,.45,1.1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #24504D;
  background: none;
  border: none;
  align-self: flex-end;
  padding: 14px 22px 10px 0;
  margin: 0 0 13px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #BCA16D;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 22px;
  padding-left: 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #24504D;
  padding: 11px 0;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0F7F4;
  color: #BCA16D;
}
@media (max-width: 768px) {
  .mobile-nav {
    padding-left: 22px;
    gap: 11px;
  }
}

/* FOOTER */
footer {
  background: #24504D;
  color: #fff;
  padding: 56px 0 6px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
}
.footer-branding img {
  height: 48px;
  width: auto;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  padding: 2px 12px;
  border-radius: 4px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.13s, color 0.11s;
}
.footer-menu a:hover {
  color: #BCA16D;
  background: #173533;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #F0F7F4;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: #2E655F;
  border-radius: 50%;
  padding: 8px;
  transition: background 0.15s;
}
.footer-social a:hover {
  background: #BCA16D;
}
.footer-copyright {
  font-size: 0.97rem;
  color: #CFDCD8;
  margin-top: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
}

/* RESPONSIVE: Section Spacing, Grids, Layout */
@media (max-width: 1024px) {
  .content-grid, .card-container {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 5px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container, .content-grid {
    gap: 14px;
    flex-direction: column;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* COOKIE BANNER - CONSENT */
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  width: 100vw;
  background: #24504D;
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px 19px 28px;
  box-shadow: 0 -2px 22px 0 rgba(36,80,77,0.19);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: slideUpIn 0.45s cubic-bezier(.25,.6,.45,1.1) 1;
  opacity: 1;
}
@keyframes slideUpIn {
  from {
    opacity: 0; 
    transform: translateY(80px);
  }
  to {
    opacity: 1; 
    transform: translateY(0);
  }
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner-message {
  flex: 2 1 230px;
  margin-right: 13px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #24504D;
  padding: 9px 22px;
  border-radius: 60px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 0.03em;
  background: #fff;
  box-shadow: 0 0.5px 8px 0 rgba(36,80,77,0.04);
  transition: background 0.12s, color 0.13s;
}
.cookie-btn.accept {
  background: #BCA16D;
  color: #24504D;
}
.cookie-btn.accept:hover { background: #a08a54; color: #fff; }
.cookie-btn.reject {
  background: #E8ECE7;
  color: #24504D;
}
.cookie-btn.reject:hover { background: #F0F7F4; color: #BCA16D; }
.cookie-btn.settings {
  background: #fff;
  color: #24504D;
  border: 1.5px solid #BCA16D;
}
.cookie-btn.settings:hover { background: #F9F6EE; color: #BCA16D; border-color: #A89565; }

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 17px 8px 15px 8px;
  }
  .cookie-banner-message {
    margin-right: 0;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    text-align: left;
    margin-bottom: 2px;
  }
}

/* COOKIE MODAL SETTINGS */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,80,77, 0.32);
  z-index: 1001;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn .21s both;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #24504D;
  border-radius: 14px;
  box-shadow: 0 5px 60px 0 rgba(36,80,77,0.17);
  padding: 28px 28px 18px 28px;
  min-width: 330px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  animation: popupIn 0.18s cubic-bezier(.64,.21,.43,1.2) 1;
}
@keyframes popupIn {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to   { transform: none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #24504D;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #BCA16D;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #24504D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 15px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #24504D;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #24504D;
}
.cookie-category .always {
  background: #E8ECE7;
  font-size: 0.98rem;
  color: #BCA16D;
  border-radius: 6px;
  padding: 3px 11px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 22px;
  border-radius: 60px;
  border: none;
  margin-left: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions .accept {
  background: #BCA16D;
  color: #24504D;
}
.cookie-modal .cookie-modal-actions .accept:hover,
.cookie-modal .cookie-modal-actions .accept:focus {
  background: #A89565;
  color: #fff;
}
.cookie-modal .cookie-modal-actions .cancel {
  background: #E8ECE7;
  color: #24504D;
}
.cookie-modal .cookie-modal-actions .cancel:hover,
.cookie-modal .cookie-modal-actions .cancel:focus {
  background: #F0F7F4;
  color: #24504D;
}

/* Add shadow to floating elements */
@media (max-width: 520px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 5px 12px 7px;
  }
}

/* GENERAL UTILITIES */
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }

/* FORMS */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #24504D;
  border: 1.3px solid #BCA16D;
  border-radius: 8px;
  padding: 11px 13px;
  margin-bottom: 20px;
  background: #F5FBF9;
  outline: none;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #24504D;
}

/* OVERRIDES: ACCENT/BADGES */
.badge {
  display: inline-block;
  background: #BCA16D;
  color: #fff;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  padding: 4px 11px;
}

/* Microinteractions / Transitions */
.button, .cta-btn, .secondary-cta, .cookie-btn, .cookie-modal-actions button {
  transition: box-shadow 0.18s, transform 0.15s, background 0.13s, color 0.13s, border-color 0.1s;
}

/* Hide unwanted focus */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ACCESSIBILITY: Ensure high contrast in testimonials & review cards (enforced) */
.testimonial-card {
  background: #F0F7F4;
  color: #1E3937;
}
.testimonial-card p, .testimonial-card span {
  color: #1E3937;
}

/* --- END OF STYLE.CSS --- */