/* =========================
   SYNTHORAVET CSS RESET & BASE
   ========================= */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafafb;
}
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #141414;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #141414;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #005E69;
}
:focus {
  outline: 2px solid #005E69;
  outline-offset: 2px;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
h1 {
  font-size: 2.75rem; /* 44px */
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem; /* 24px */
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

p, ul, ol {
  font-family: 'Lato', Arial, sans-serif;
  color: #242424;
  margin-bottom: 18px;
  font-size: 1.0625rem; /* 17px */
}
ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
  color: #222;
}

/* ============================
   LAYOUT
   ============================ */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(20,20,20,0.05);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 0;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 rgba(20,20,20,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  min-width: 250px;
}

.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F9F8;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  margin-bottom: 20px;
  min-width: 0;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #111;
  margin: 0 16px 0 0;
}
.testimonial-card span {
  color: #333;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

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

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 36px;
  border-top: 1px solid #e8eaea;
  padding-top: 38px;
}
@media (max-width: 900px) {
  .footer-wrapper { gap: 20px; }
}
@media (max-width: 600px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 0;
    padding-top: 20px;
    align-items: flex-start;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-menu a {
  color: #444;
  font-weight: 400;
  font-size: 1rem;
  transition: color .18s;
}
.footer-menu a:hover {
  color: #005E69;
  text-decoration: underline;
}
.footer-contact p {
  color: #222;
  margin-bottom: 0;
  font-size: 1rem;
}
.legal {
  font-size: 0.95rem;
  color: #7e7e7e;
  margin-top: 18px;
}

/* ============================
   NAVIGATION
   ============================ */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 14px rgba(17,24,39,.04);
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 30px;
}
.main-nav > a img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  list-style: none;
  margin: 0 36px 0 0;
  align-items: center;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav ul li a {
  color: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 2px;
  font-size: 1.08rem;
  letter-spacing: -0.2px;
  border-bottom: 2px solid transparent;
  transition: border-color .18s, color .18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #005E69;
  border-bottom: 2px solid #005E69;
}
.btn-primary {
  background: #111;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 9px 28px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 3px 12px 0 rgba(0,0,0,0.07);
  transition: background .18s, color .18s, box-shadow .18s;
  display: inline-block;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #005E69;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(2,50,90,0.13);
}

/* ===========
   MOBILE MENU
   =========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1201;
  color: #111;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 5px;
  transition: background .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eee;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1300;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 15px 80px rgba(20,30,30,.27);
  transform: translateX(-100%);
  transition: transform .37s cubic-bezier(.4, .04, .38, 1);
  flex-direction: column;
  justify-content: start;
  padding: 30px 0 0 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #111;
  cursor: pointer;
  z-index: 1400;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #eaeaea;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 74px;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #141414;
  padding: 9px 0;
  font-weight: 500;
  transition: color .18s;
  min-width: 180px;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover {
  color: #005E69;
  border-bottom: 1px solid #005E69;
}

@media (max-width: 1100px) {
  .main-nav ul { gap: 12px; margin-right: 12px; }
  .footer-menu { gap: 12px; }
}

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

@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .main-nav > a img { height: 36px; }
}

/* ======================
   RESPONSIVE - SECTIONS
   ====================== */
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .section {
    padding: 12px 2px;
  }
  .card {
    padding: 17px 10px;
  }
}

/* ======================
   TABLES & LISTS
   ====================== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 16px;
  box-shadow: 0 2px 14px 0 rgba(20,20,20,0.04);
}
thead tr {
  background: #EFEFEF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
th, td {
  padding: 14px 16px;
  border: 1px solid #ececec;
  text-align: left;
  font-size: 1rem;
  color: #181c1c;
}
tbody tr:nth-child(odd) {
  background: #fafafb;
}
@media (max-width: 600px) {
  table, thead, tbody, tr, th, td {
    display: block;
  }
  th, td {
    border: none;
    padding: 8px 4px;
  }
}

/* ==========================
   MONOCHROME SOPHISTICATED
   ========================== */
body {
  background: #FAFAFB;
  color: #161718;
}
section {
  background: #fff;
  margin-bottom: 40px;
  border-radius: 24px;
  box-shadow: 0 3px 32px 0 rgba(0,0,0,0.04);
  transition: box-shadow .21s;
}
section:hover, section:focus-within {
  box-shadow: 0 6px 42px 0 rgba(0,0,0,0.10);
}

/* Subtle border for contrast */
.section, section {
  border: 1px solid #EEE;
}

/* ==========================
   BUTTONS, INTERACTIVITY
   =========================== */
.btn-primary {
  background: #111  ;
  color: #fff;
  border: none;
  border-radius: 48px;
  padding: 10px 32px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.05);
  letter-spacing: 0.05em;
  transition: background .22s, color .22s, box-shadow .17s, transform .13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #005E69;
  color: #fff;
  box-shadow: 0 10px 36px 0 rgba(0,94,105,0.13);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:active {
  background: #239B56;
}

/* ====================
   COOKIE BANNER/MODAL
   ==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #222;
  color: #fff;
  padding: 20px 18px;
  box-shadow: 0 -3px 24px rgba(0,0,0,0.27);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity .4s cubic-bezier(.4,.04,.38,1), transform .3s cubic-bezier(.4,.04,.38,1);
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 8px 22px;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: background .22s, color .22s, border .14s;
}
.cookie-banner button.accept {
  background: #005E69;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #111;
  border: 1px solid #bbb;
}
.cookie-banner button.settings {
  background: #eaeaea;
  color: #14232a;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #239B56;
  color: #fff;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 318px;
  max-width: 96vw;
  width: 395px;
  background: #fff;
  color: #181718;
  border-radius: 18px;
  box-shadow: 0 12px 66px rgba(10,30,30,0.27);
  z-index: 2600;
  padding: 32px 24px 26px 24px;
  transform: translate(-50%, 80%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity .33s cubic-bezier(.4,.04,.38,1), transform .28s cubic-bezier(.4,.04,.38,1);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #222;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #005E69;
  width: 19px;
  height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  background: none;
  font-size: 1.45rem;
  color: #444;
  cursor: pointer;
  border-radius: 5px;
  transition: background .17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #eaeaea;
}

@media (max-width: 560px) {
  .cookie-modal { width: 97vw; min-width: unset; padding: 13px 4vw 18px 4vw; }
}

/* ======================
   SMOOTH TRANSITIONS
   =====================*/
.header, .section, .btn-primary, .card,
.card-container, .testimonial-card, .cookie-banner, .cookie-modal {
  transition: box-shadow .21s, background .24s, border-color .16s;
}

/* ====== MISCELLANEOUS ========= */
::-webkit-scrollbar {
  width: 8px;
  background: #EFEFEF;
}
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 4px;
}
hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 40px 0;
}
::selection {
  background: #005E69;
  color: #fff;
}

/* ======= FORMS (future-proofing) ============ */
input, textarea, select {
  font-family: inherit;
  border: 1px solid #bbb;
  border-radius: 9px;
  padding: 10px 12px;
  margin-bottom: 18px;
  width: 100%;
  font-size: 1rem;
  background: #f9fafc;
  transition: border .17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #005E69;
  background: #fff;
}

/* ======= Z-INDEXS ============ */
.mobile-menu { z-index: 1300; }
.mobile-menu-toggle { z-index: 1201; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 2600; }

/* ======= UTILITIES ============ */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-60 { margin-top: 60px; }

/* ===============
   MONOCHROME BRANDING ACCENTS
   =============== */
.card {
  border: 1px solid #eee;
}
.card:hover, .card:focus-within {
  border-color: #bbb;
  box-shadow: 0 8px 28px 0 rgba(0,94,105,0.10);
}

/* Default accent elements for headers or separators */
.accent {
  color: #005E69;
  font-weight: 700;
}

/* ===============
   ACCESSIBILITY & PRINT
   =============== */
@media print {
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  a { text-decoration: underline; }
}

/* ===============
   END OF CSS
   =============== */
