/* =============================================================
   CSS RESET & NORMALIZE
============================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F7FA;
  color: #232B2F;
  line-height: 1.6;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #25644E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #388654;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
}
li + li {
  margin-top: 6px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #215039;
  line-height: 1.2;
}
h1 { font-size: 2rem; margin-bottom: 20px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 10px; }
h4, h5 { font-size: 1rem; }
p, dl, table, ul, ol {
  margin-bottom: 16px;
}
strong {
  color: #25644E;
  font-weight: 600;
}
small {
  font-size: 0.85rem;
  color: #999;
}
hr {
  border: none;
  border-top: 1px solid #D4D8DC;
  margin: 32px 0;
}
table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  background: #FAFBFC;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(37,100,78,0.05);
}
thead tr {
  background: #EDEDED;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #D4D8DC;
  font-size: 1rem;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25644E;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/* =============================================================
   BRAND COLORS & TYPOGRAPHY
============================================================= */
:root {
  --color-primary: #25644E;
  --color-primary-dark: #215039;
  --color-accent: #388654;
  --color-secondary: #EDEDED;
  --color-bg: #F5F7FA;
  --color-light: #fff;
  --color-gray-dark: #232B2F;
  --color-gray: #7A8895;
  --color-shadow: 0 2px 10px 0 rgba(37,100,78,0.08);
  --radius: 10px;
  --transition-fast: 0.15s cubic-bezier(.4,0,.2,1);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* =============================================================
   CONTAINER & LAYOUT
============================================================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 820px;
}
.text-section {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: var(--radius);
  box-shadow: var(--color-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #E0E5EA;
  border-radius: var(--radius);
  box-shadow: var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 240px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(37,100,78,0.11);
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}

.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;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(37,100,78,0.10);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--transition);
}
.testimonial-card p {
  color: #232B2F;
  font-size: 1.08rem;
  line-height: 1.52;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #25644E;
}
.testimonial-card:hover {
  box-shadow: 0 8px 20px 0 rgba(37,100,78,0.19);
}

.map-embed {
  margin-top: 18px;
  background: #EDEDED;
  border-radius: 8px;
  padding: 18px 15px;
  color: #25644E;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  margin-top: 8px;
}
.contact-details > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #F6F9F7;
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 220px;
  flex: 1 1 220px;
  font-size: 1rem;
}
.contact-details img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.79;
}

/* -----------------------------
   BUTTONS & CTA
----------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 32px;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  margin-top: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(37, 100, 78, 0.10);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
  text-decoration: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 100, 78, 0.18);
  text-decoration: none;
}

/* -----------------------------
   HEADER & NAVIGATION
----------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E6EAEA;
  box-shadow: 0 1px 4px rgba(37,100,78,0.03);
  position: sticky;
  top: 0;
  z-index: 1006;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.logo img {
  height: 46px;
  width: auto;
  transition: filter 0.18s;
}
.logo img:hover { filter: brightness(0.75); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215039;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  font-size: 1rem;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EDEDED;
  color: var(--color-primary);
}

header .cta-btn {
  margin-left: 18px;
  margin-right: 4px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background var(--transition);
  z-index: 1011;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EDEDED;
}

/* -----------------------------
   MOBILE MENU
----------------------------- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37, 100, 78, 0.97);
  box-shadow: 0 4px 38px 0 rgba(37,100,78,0.13);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.49,1.67,.36,.86);
  z-index: 2022;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 24px 18px 8px 0;
  cursor: pointer;
  z-index: 2023;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #7AC495;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-left: 32px;
  margin-top: 16px;
  gap: 10px;
}
.mobile-nav a {
  color: #EDEDED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 12px 0 12px 8px;
  border-radius: 5px;
  width: 90%;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #215039;
  color: #7AC495;
}

@media (max-width: 1060px) {
  .container {
    max-width: 950px;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 730px;
  }
  .main-nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 650px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* =============================================================
   FOOTER
============================================================= */
footer {
  background: #1F4133;
  color: #EDEDED;
  padding: 40px 0 12px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 28px;
}
.main-footer-menu, .footer-legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-footer-menu a, .footer-legal-menu a {
  color: #EDEDED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.main-footer-menu a:hover, .footer-legal-menu a:hover {
  background: #25644E;
  color: #7AC495;
}
.footer-legal {
  margin-top: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.96rem;
  color: #aed6c3;
}

@media (max-width: 670px) {
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .main-footer-menu, .footer-legal-menu {
    gap: 6px;
    flex-wrap: wrap;
  }
}

/* =============================================================
   SPACING & FLEX LAYOUT FOR BUSINESS SECTIONS
============================================================= */
@media (max-width: 900px) {
  .content-grid, .card-container, .contact-details, .feature-item, .testimonial-card {
    flex-direction: column !important;
    gap: 18px;
  }
  .card {
    min-width: unset;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 32px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 16px 12px;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-details {
    flex-direction: column;
    gap: 12px;
  }
}

/* =============================================================
   MICRO-INTERACTIONS & TRANSITIONS
============================================================= */
button, .cta-btn, .main-nav a, .mobile-nav a {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.section, .testimonial-card, .card {
  transition: box-shadow 0.23s cubic-bezier(.4,0,.2,1), border 0.13s;
}

/* =============================================================
   FORMS, DL (FAQ), ETC.
============================================================= */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-primary);
}
dd {
  margin-left: 0;
  margin-bottom: 18px;
  color: #232B2F;
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
============================================================= */
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #215039;
  box-shadow: 0 -3px 18px rgba(37,100,78,0.12);
  z-index: 7777;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px 16px 12px;
  transition: transform 0.3s cubic-bezier(.42,0,.58,1);
  gap: 18px;
}
#cookie-banner.hide {
  transform: translateY(120%);
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  margin: 0 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-accept-btn {
  background: var(--color-primary);
  color: #fff;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: var(--color-accent);
}
.cookie-reject-btn {
  background: #EDEDED;
  color: #25644E;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #d7ede1;
  color: #215039;
}
.cookie-settings-btn {
  background: transparent;
  color: #388654;
  border: 1.5px solid #388654;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #e1f6ea;
  color: #215039;
}

#cookie-modal {
  position: fixed;
  left: 50%;
  top: 53vh;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  box-shadow: 0 8px 38px rgba(37,100,78,0.22);
  border-radius: 12px;
  z-index: 9000;
  padding: 32px 20px;
  width: 96vw;
  max-width: 410px;
  display: none;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  animation: cookieModalIn 0.24s cubic-bezier(.12,1.11,.39,.99);
}
@keyframes cookieModalIn {
  from { transform: translate(-50%, 30%) scale(.92); opacity:0; }
  to { transform: translate(-50%, -50%) scale(1); opacity:1; }
}
#cookie-modal.open { display: flex; }
#cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215039;
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
#cookie-modal input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
#cookie-modal .cookie-category-desc {
  margin-left: 26px;
  color: #4E655A;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  #cookie-modal {
    padding: 22px 8px;
    min-width: 0;
    max-width: 98vw;
  }
  #cookie-banner {
    font-size: 0.95rem;
    padding: 14px 6px 12px 6px;
  }
}

/* =============================================================
   ICONS, LISTS, and RICH ELEMENTS
============================================================= */
ul li img {
  width: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(3px);
}
li img ~ span, li img ~ strong {
  margin-left: 5px;
}
ul, ol {
  margin-bottom: 18px;
}

/* =============================================================
   UTILITY CLASSES & HELPER FLEX
============================================================= */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }

/* =============================================================
   RESPONSIVE TYPOGRAPHY SCALE
============================================================= */
@media (min-width: 681px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.2rem; }
  p, table, dl, li, th, td { font-size: 1.06rem; }
}

@media (max-width: 500px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.12rem; }
}

/* =============================================================
   MISCELLANEOUS
============================================================= */
::-webkit-input-placeholder { color: #738888; }
::-moz-placeholder { color: #738888; }
:-ms-input-placeholder { color: #738888; }
::placeholder { color: #738888; }

/* =============================================================
   PRINT & SELECTION
============================================================= */
@media print {
  nav, .mobile-menu, header, footer, #cookie-banner, #cookie-modal { display: none !important; }
  .container, .content-wrapper { max-width: 96vw !important; padding:0; }
}

::selection {
  background: #B7DFCB;
  color: #1F4133;
}
