/* 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, main, 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232d3c;
  background: #fff;
  min-height: 100vh;
  line-height: 1.5;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #00784e;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #293953;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #232d3c;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 28px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.125rem;
}
p, ul, ol {
  margin-bottom: 16px;
}
p {
  color: #232d3c;
  font-size: 1rem;
}
.price {
  font-weight: 700;
  color: #00784e;
  background: #EDEDED;
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: 6px;
  font-size: 1rem;
}
.emphasis {
  color: #00784e;
}

/* CONTAINER AND LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(41, 57, 83, 0.03);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  height: 44px;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #293953;
  position: relative;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: #00784e;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #00784e;
  color: #fff;
  border-radius: 24px;
  padding: 12px 32px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0, 120, 78, 0.10);
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.4,0,.2,1),
    box-shadow 0.18s cubic-bezier(.4,0,.2,1),
    transform 0.14s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover, .btn-primary:focus {
  background: #293953;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 22px rgba(41, 57, 83, 0.08);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #EDEDED;
  color: #293953;
  border-radius: 24px;
  padding: 12px 32px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(41,57,83,0.04);
  cursor: pointer;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.18s cubic-bezier(.4,0,.2,1);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #293953;
  color: #fff;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #293953;
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1;
  margin-left: 10px;
  transition: background 0.16s;
  z-index: 1300;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #00784e;
  outline-offset: 2px;
  background: #EDEDED;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(41, 57, 83, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.6,-0.28,.74,.05);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin: 24px 24px 10px 0;
  cursor: pointer;
  padding: 0 4px;
  transition: background 0.15s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 30px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 14px 0;
  width: 100%;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00784e;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .btn-primary {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN SECTIONS & CARDS */
main {
  flex: 1 0 auto;
}
section {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(41,57,83,0.03);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 24px;
  transition: box-shadow 0.15s, transform 0.13s;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px rgba(41,57,83,0.13);
  transform: translateY(-2px) scale(1.005);
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(41,57,83,0.07);
  color: #232d3c;
  min-width: 280px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  flex-direction: column;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(0,120,78,0.09);
}
.testimonial-card p {
  color: #232d3c;
  font-size: 1rem;
  margin: 0 0 10px 0;
}
.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #00784e;
  font-size: 0.98rem;
  margin-top: 0;
}
/* Feature/Benefit item styling (for icons and label stacks) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item img {
  height: 32px;
  width: 32px;
  margin-bottom: 8px;
}
/* Plain styled ul li if not inside testimonial or card */
ul li:not(.feature-item) {
  margin-bottom: 12px;
}

/* GENERIC BUTTON STYLES */
button, .btn-primary, .btn-secondary {
  cursor: pointer;
  outline: none;
}
button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 2px solid #00784e;
  outline-offset: 2px;
}

/* FOOTER STYLES */
footer {
  background: #fff;
  box-shadow: 0 -1px 8px rgba(41,57,83,0.04);
  padding-top: 38px;
  padding-bottom: 26px;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.logo-footer {
  display: flex;
  align-items: center;
  height: 34px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.footer-nav a {
  color: #293953;
  font-size: 0.97rem;
  font-family: 'Montserrat',sans-serif;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #00784e;
}
.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #68788a;
  margin-top: 8px;
}

/* --- TEXT/INFO SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 18px 0;
}
.text-section ul {
  margin-bottom: 0;
}
.text-section a {
  color: #00784e;
}
.text-section a:hover, .text-section a:focus {
  text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  header .container {
    min-height: 48px;
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    padding: 11px 18px;
    font-size: 1rem;
  }
  .footer-main {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 12px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { min-width: 0; width: 100%; }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .btn-primary, .btn-secondary {
    padding: 10px 8px;
    width: 100%;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 12px 8px;
  }
}

/* MOBILE ADJUSTMENTS FOR NAVBAR AND FOOTER */
@media (max-width: 600px) {
  .footer-main, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 9px; }
}

/* MICRO-INTERACTIONS */
.card, .testimonial-card, .btn-primary, .btn-secondary {
  transition: box-shadow 0.18s, background 0.18s, transform 0.13s;
}

/* VISUAL ELEMENTS: SUBTLE EFFECTS */
.card, .testimonial-card {
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(41,57,83,0.06);
  background: #fff;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 30px rgba(41,57,83,0.09);
  z-index: 2;
  transform: translateY(-2px) scale(1.011);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #232d3c;
  box-shadow: 0 -1px 24px rgba(41,57,83,0.13);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 auto;
  max-width: 650px;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-cookie {
  border: none;
  background: #00784e;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 14px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(41,57,83,0.07);
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-cookie.btn-cookie-settings {
  background: #EDEDED;
  color: #293953;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #232d3c;
  color: #fff;
}
.btn-cookie.btn-cookie-settings:hover, .btn-cookie.btn-cookie-settings:focus {
  background: #00784e;
  color: #fff;
}

@media (max-width: 730px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,57,83,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in 0.3s;
}
@keyframes cookie-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 94vw;
  border-radius: 18px;
  box-shadow: 0 14px 60px rgba(0,0,0,0.19);
  padding: 22px 26px 18px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modal-slide-up 0.23s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-slide-up {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  flex: 1 1 auto;
  color: #232d3c;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: #EDEDED;
  position: relative;
  transition: background 0.14s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #293953;
  position: absolute;
  left: 3px;
  top: 2px;
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle input:checked + span {
  left: 17px;
  background: #00784e;
}
.cookie-category--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-footer {
  margin-top: 14px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.btn-cookie-modal-close {
  background: none;
  border: none;
  color: #232d3c;
  font-size: 2rem;
  position: absolute;
  top: 20px; right: 22px;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 460px) {
  .cookie-modal {
    padding: 16px 7px 12px 11px;
    max-width: 97vw;
  }
  .cookie-modal-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
  }
}

/* SPACING HELPERS */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }
.gap-4 { gap: 32px !important; }

/* ACCESSIBILITY FOCUS */
a:focus, button:focus {
  outline: 2px solid #00784e;
  outline-offset: 1px;
}

/* BRAND & MINIMALIST ACCENTS */
::-webkit-selection {
  background: #EDEDED;
  color: #232d3c;
}
::selection {
  background: #EDEDED;
  color: #232d3c;
}

/* Ensure minimal dark text for testimonial/readability */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-author {
  color: #232d3c;
}

/* Remove scrollbars from modal when open */
body.modal-open {
  overflow: hidden;
}

/* Accessibility: visually hidden class for modal overlays and toggles if needed */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}

/* END OF CSS */
