/* =========================
   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;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFFFF;
  color: #375348;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #375348;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7ACDA6;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
button, .cta-btn {
  cursor: pointer;
  user-select: none;
}

/* =========================
   GLOBAL CONTAINER & LAYOUTS
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.text-section {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.card-container, .features-grid, .services-list, .features, .team-section, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .card-container, .features-grid, .services-list, .features, .team-section, .card-grid, .content-grid {
    gap: 16px;
    flex-direction: column;
  }
}

.card, .feature-card, .service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(37,67,54,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .feature-card:hover, .service-card:hover {
  box-shadow: 0 4px 20px rgba(37,67,54,0.12);
  transform: translateY(-2px) scale(1.01);
}

/* FLEX ONLY FOR ALL LAYOUTS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  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;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F4F4;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(37,67,54,0.06);
  margin-bottom: 20px;
  max-width: 480px;
}
.testimonial-card p {
  font-size: 18px;
  color: #375348;
  line-height: 1.5;
}
.testimonial-card span {
  font-size: 15px;
  color: #375348;
  font-weight: 400;
  opacity: 0.7;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #375348;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.1rem; }
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.04rem; }
}

p, li, div, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
p, ul, ol, li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}

ul, ol {
  padding-left: 18px;
  margin-bottom: 18px;
}
ul.value-list {
  margin: 0 0 12px 0;
  padding-left: 22px;
}
ul li, ol li{
  margin-bottom: 8px;
}

/* =========================
   HEADER, NAV, FOOTER
   ========================= */
header {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #F4F4F4;
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 80px;
}
header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
header nav a {
  color: #375348;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 6px 0;
  line-height: 1;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #7ACDA6;
  border-bottom: 2px solid #7ACDA6;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #7ACDA6;
  color: #375348;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 26px;
  box-shadow: 0 2px 8px rgba(58, 154, 121, 0.08);
  border: none;
  transition: background 0.20s, color 0.20s, box-shadow 0.18s, transform 0.16s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #375348;
  color: #fff;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 20px rgba(58, 154, 121, 0.12);
}

.footer-logo img {
  width: 56px; height: auto;
  display: block;
  margin-bottom: 14px;
}
footer {
  border-top: 1px solid #F4F4F4;
  background: #fff;
  padding: 34px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
  font-size: 15px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #375348;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  opacity: 0.7;
  border: none;
}
footer nav a:hover, footer nav a:focus {
  color: #7ACDA6;
  opacity: 1;
}
.footer-info {
  color: #375348;
  opacity: 0.5;
  font-size: 14px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =========================
   FEATURE CARDS & GRID
   ========================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
}
.feature-card {
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  align-items: flex-start;
  background: #fff;
  transition: box-shadow 0.16s, transform 0.14s;
  border: 1px solid #F4F4F4;
}
.feature-card img {
  width: 44px; height: 44px; margin-bottom: 8px; display: block;
}
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.feature-card p {
  font-size: 15px;
  color: #375348;
  opacity: 0.93;
  margin-bottom: 6px;
}
.feature-card a {
  color: #7ACDA6;
  margin-top: 6px;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s;
}
.feature-card a:hover, .feature-card a:focus {
  text-decoration: underline;
  color: #375348;
}
/* =========================
   TEAM, SEALS, CONTACT BLOCK
   ========================= */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-bio {
  background: #F4F4F4;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 200px;
  min-width: 160px;
  max-width: 320px;
  box-shadow: 0 0.5px 2px rgba(55, 83, 72, 0.06);
  transition: box-shadow 0.18s;
}
.team-bio h3 { margin-bottom: 8px; }
.team-bio p { font-size: 15px; color: #375348; }

.mission-statement {
  background: #fff;
  border-left: 6px solid #7ACDA6;
  padding: 24px 22px;
  border-radius: 8px;
  margin: 14px 0 8px 0;
  box-shadow: 0 1.5px 7px rgba(55, 83, 72, 0.03);
}
.value-list {
  margin: 0 0 8px 0;
  color: #375348;
  font-size: 15px;
}

.seals {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 10px 0 0 0;
}
.seals img {
  width: 48px; height: auto;
  opacity: 0.88;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  margin: 18px 0;
  color: #375348;
}
.contact-block > div {
  font-size: 15px;
}
.contact-block a {
  color: #7ACDA6;
  text-decoration: underline;
  font-weight: 500;
}
/* =========================
   MOBILE NAVIGATION BURGER
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: #F4F4F4;
  border-radius: 8px;
  border: none;
  font-size: 32px;
  color: #375348;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 119;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 2px 6px rgba(37, 67, 54, 0.09);
}
.mobile-menu-toggle:active {
  background: #7ACDA6;
  color: #fff;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, .cta-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  box-shadow: 0 0 50px rgba(55, 83, 72, 0.10);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.55,.11,.65,1.60);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 34px;
  background: transparent;
  border: none;
  color: #375348;
  cursor: pointer;
  margin-bottom: 12px;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #7ACDA6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #375348;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #7ACDA6;
  border-bottom: 2px solid #7ACDA6;
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =========================
   SERVICES
   ========================= */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-card {
  min-width: 220px;
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px rgba(37,67,54,0.07);
  border: 1px solid #F4F4F4;
  padding: 30px 22px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-card strong {
  color: #7ACDA6;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(37,67,54,0.11);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 700px) {
  .features-grid, .services-list, .team-section {
    flex-direction: column;
    gap: 12px;
  }
  .card-container { flex-direction: column; gap: 12px; }
}

/* =========================
   TABLE, OL, LISTS, SECTIONS
   ========================= */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: 1px solid #F4F4F4;
  padding: 12px 14px;
  text-align: left;
}
thead {
  background: #F4F4F4;
}

.section ol {
  padding-left: 28px;
  margin-bottom: 18px;
}
.section ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 12px;
  color: #375348;
  font-size: 16px;
}
.section ol li img {
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

/* =========================
   MODALS, BANNERS, ANIMATIONS
   ========================= */
/* === Cookie Consent Banner === */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 199;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(55, 83, 72, 0.08);
  border-top: 1.5px solid #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 30px;
  font-size: 16px;
  transition: transform 0.36s cubic-bezier(.55,.11,.45,1.36);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8px;
  }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  background: #F4F4F4;
  color: #375348;
  border: none;
  transition: background 0.12s, color 0.13s;
}
.cookie-btn.accept {
  background: #7ACDA6;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #375348;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #375348;
  border: 1px solid #7ACDA6;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F4F4F4;
  color: #375348;
}
.cookie-btn.settings {
  color: #7ACDA6;
  background: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  text-decoration: underline;
}

/* === Cookie Preferences Modal === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(55, 83, 72, 0.16);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn { from { opacity: 0;} to {opacity:1;} }

.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 38px 26px 28px 26px;
  max-width: 440px;
  width: 96%;
  box-shadow: 0 8px 32px rgba(55, 83, 72, 0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop .34s cubic-bezier(.42,.1,.64,1.32);
}
@keyframes modalPop {
  0% { opacity: 0; transform: translateY(44px) scale(0.98); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.cookie-modal .category-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 20px;
  background: #F4F4F4;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.cookie-modal .category-toggle:checked {
  background: #7ACDA6;
}
.cookie-modal .category-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.20s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.cookie-modal .category-toggle:checked::before {
  left: 18px;
}
.cookie-modal .category-desc {
  font-size: 15px;
  color: #375348;
  opacity: 0.8;
  margin-bottom: 12px;
  margin-left: 10px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  flex: 1;
}
.cookie-modal .essential {
  color: #375348;
  font-weight: 600;
  opacity: 0.7;
  font-size: 15px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #375348;
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #7ACDA6;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    height: 68px;
  }
  .features-grid, .services-list, .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 5px;
  }
}
@media (max-width: 600px) {
  header .container {
    height: 52px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-logo img {
    width: 40px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
  }
  .features-grid, .services-list, .team-section {
    gap: 10px;
  }
}

/* =========================
   MICRO-INTERACTIONS & ACCESSIBILITY
   ========================= */
:focus-visible {
  outline: 2px solid #7ACDA6;
  outline-offset: 1px;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #7ACDA6 !important;
  outline-offset: 2px;
}

@media (hover: hover) {
  button:hover, .cta-btn:hover, .feature-card:hover, .service-card:hover {
    filter: brightness(1.04);
  }
}

/* =========================
   MISCELLANEOUS
   ========================= */
::-webkit-scrollbar {
  width: 8px;
  background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
  background: #7ACDA6;
  border-radius: 14px;
}

::selection {
  background: #7ACDA6;
  color: #fff;
}

/* Hide visually */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Hide default scroll on modal */
body.cookie-modal-open {
  overflow: hidden;
}

/* Utility Spacing */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }

/* ============ Placeholders for cookie banner/modal ============= */
/* To be triggered/managed by JavaScript and added to DOM as needed. */
