/* CSS RESET & BASE TYPOGRAPHY ---------------------------------------------------- */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F1FAFF;
  color: #16273E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #33A382;
  text-decoration: none;
  transition: color .2s cubic-bezier(.41,1.05,.53,1);
}
a:hover, a:focus {
  color: #ffb43b;
  text-decoration: underline;
}
strong { font-weight: bold; }
em { font-style: italic; }

/* BRAND TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -2px;
  color: #16273E;
  text-shadow: 0 2px 12px rgba(51,163,130,0.11);
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 14px;
  color: #33A382;
  text-shadow: 0 1px 8px rgba(241,250,255,0.16);
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #16273E;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #23334c;
}
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 6px;
}

/* LAYOUT CONTAINERS --------------------------------------------------------------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(51,163,130,0.09), 0 2px 8px 0 rgba(22,39,62,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  transition: box-shadow .25s cubic-bezier(.41,1.05,.53,1), transform .22s cubic-bezier(.41,1.05,.53,1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(51,163,130,0.17), 0 4px 18px 0 rgba(22,39,62,0.11);
  transform: translateY(-4px) scale(1.016);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(22,39,62,0.07);
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 245px;
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .22s cubic-bezier(.43,1.19,.36,1.02), transform .19s cubic-bezier(.43,1.19,.36,1.02);
  border: 3px solid transparent;
}
.features-grid > div:hover {
  border-color: #33A382;
  box-shadow: 0 6px 22px 0 rgba(51,163,130,0.14);
  transform: scale(1.025) rotate(-2deg);
}
.features-grid img {
  width: 43px;
  height: 43px;
  filter: drop-shadow(0 1.2px 1px #fbeeae);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 38px 0 rgba(51,163,130,0.08), 0 2px 10px 0 rgba(22,39,62,0.08);
  border-left: 8px solid #33A382;
  transition: box-shadow .22s;
  position: relative;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #16273E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #33A382;
}
.testimonial-card div:last-child {
  font-size: 1.2em;
  color: #f1c62c;
  letter-spacing: 1.5px;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #fff;
  box-shadow: 0 2px 10px rgba(22,39,62,0.07);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 250px;
}

/* BUTTONS & CTAS ------------------------------------------------------------------ */
.cta-btn {
  background: #ff9f1c;
  color: #16273E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(51,163,130,0.12), 0 2px 6px 0 rgba(22,39,62,0.07);
  margin-top: 20px;
  margin-bottom: 10px;
  display: inline-block;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .15s;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.09);
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe066;
  color: #009688;
  box-shadow: 0 8px 38px 0 rgba(255,223,73,0.20), 0 4px 14px 0 rgba(51,163,130,0.14);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50px;
  transition: background 0.15s, color 0.14s, box-shadow 0.15s;
}
.mobile-menu-toggle {
  color: #16273E;
  background: #ffe066;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(241,250,255,0.08);
  font-size: 2rem;
  z-index: 1042;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #33A382;
  color: #fff;
}
.mobile-menu-close {
  background: #fff7cd;
  color: #ef476f;
  margin: 18px 18px 24px 0;
  align-self: flex-end;
  font-size: 2.1rem;
  z-index: 1152;
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ef476f;
  color: #fff;
}

/* HEADER & NAVIGATION ------------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(51,163,130,0.05);
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  min-height: 74px;
  padding: 8px 20px 8px 14px;
}
header img {
  width: 56px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #16273E;
  font-weight: 700;
  border-radius: 18px;
  padding: 7px 14px;
  position: relative;
  transition: background 0.17s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #33A382;
  color: #fff;
}

/* Hide mobile menu on desktop by default */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22, 39, 62, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.41,1.15,.49,.97);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 15px 32px 0 0;
  width: 100%;
  align-items: flex-end;
  z-index: 1201;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  color: #ffe066;
  background: none;
  padding: 12px 6px;
  border-radius: 18px;
  font-weight: bold;
  letter-spacing: 1.2px;
  transition: color .18s, background .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #33A382;
  background: #fff;
}

@media (max-width: 1050px) {
  header nav { gap: 11px; }
}
@media (max-width: 900px) {
  header .container {
    gap: 13px;
    min-height: 60px;
  }
  header nav {
    gap: 6px;
    margin-left: 13px;
  }
  .cta-btn {
    padding: 11px 21px;
    font-size: 1rem;
  }
}

/* Hamburger: show button and hide nav on mobile */
@media (max-width: 850px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 851px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}


/* MAIN & SECTION STYLES ----------------------------------------------------------- */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main section:nth-child(even) {
  background: #fffaf3;
}

/* TABLES -------------------------------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-bottom: 20px;
}
th, td {
  border-bottom: 2px solid #E4ECF2;
  padding: 12px 12px 12px 0;
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09em;
  color: #16273E;
  background: #f0fff6;
  font-weight: 800;
}
tr:last-child td, tr:last-child th {
  border-bottom: none;
}
tr:nth-child(odd) td {
  background: #F1FAFF;
}

/* COMPANY DATA BLOCKS ------------------------------------------------------------- */
.company-data {
  font-size: .96rem;
  color: #30313C;
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.company-data > span { margin-right: 8px; }

.map-snippet {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 15px 22px;
  margin: 18px 0 13px 0;
  box-shadow: 0 1px 5px 0 rgba(51,163,130,0.04);
}
.map-snippet img { width: 42px; }

.contact-hint {
  background: #e9f9f1;
  border-radius: 12px;
  color: #16273E;
  padding: 12px 20px 12px 22px;
  margin: 8px 0 0 0;
}

/* FOOTER ---------------------------------------------------------------------------- */
footer {
  background: #16273E;
  color: #fff;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: flex-start;
}
footer nav a {
  color: #ffe066;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  background: #23334c;
  border-radius: 16px;
  padding: 6px 15px;
  transition: background .17s, color .15s;
}
footer nav a:hover {
  background: #ff9f1c;
  color: #16273E;
}
footer .company-data {
  font-size: .99rem;
  color: #ffe066;
  gap: 6px;
}

/* COOKIE CONSENT BANNER ------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1450;
  box-shadow: 0 -2px 36px 6px rgba(22,39,62,0.10);
  background: #fffaf3;
  padding: 29px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  animation: cookieBounceIn .7s cubic-bezier(.23,1.02,.41,.98);
}
@keyframes cookieBounceIn {
  0% { transform: translateY(120px) scale(.92); opacity: 0; }
  80% { transform: translateY(-8px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); }
}
.cookie-banner p {
  color: #16273E;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 20px;
}
.cookie-banner button {
  background: #33A382;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  border: none;
  border-radius: 23px;
  padding: 10px 32px;
  margin-bottom: 0;
  font-weight: 700;
  box-shadow: 0 1px 7px 0 rgba(51,163,130,0.08);
  transition: background .15s, color .13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #009688;
  color: #ffe066;
}
.cookie-banner .cookie-settings-btn {
  background: #ffe066;
  color: #16273E;
  border: 2px solid #33A382;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #F1FAFF;
  color: #009688;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 42px rgba(51,163,130,0.11);
  min-width: 320px;
  max-width: 94vw;
  width: 420px;
  transform: translate(-50%,-50%) scale(.93);
  padding: 33px 25px 21px 25px;
  z-index: 1501;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s cubic-bezier(.39,1.09,.43,.97), transform .26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
  animation: cookieModalBounce .7s;
}
@keyframes cookieModalBounce {
  0% { transform: translate(-50%,-50%) scale(.8); }
  70% { transform: translate(-50%,-54%) scale(1.04); }
  100% { transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: #009688;
  font-size: 1.4em;
  margin-bottom: 8px;
  text-shadow: none;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 21px;
  top: 17px;
  background: #fff7cd;
  color: #ef476f;
  font-size: 1.6em;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover {
  background: #ef476f;
  color: #fff;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  color: #16273E;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #33A382;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-categories {
  margin: 16px 0 17px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
  font-size: 1.01em;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 11px;
  justify-content: flex-end;
}


/* ANIMATIONS & MICRO-INTERACTIONS ------------------------------------------------- */
.card, .features-grid > div, .testimonial-card, .faq-item, .cta-btn {
  will-change: transform, box-shadow;
}
.cta-btn {
  animation: ctaJump .91s cubic-bezier(.51, 1.05, .41, .99);
}
@keyframes ctaJump {
  0% { transform: translateY(50px) scale(.93); opacity: 0; }
  85% { transform: translateY(-8px) scale(1.03); opacity: 1; }
  100% { transform: translateY(0) scale(1); }
}
.features-grid > div img {
  animation: rotateFun 2s linear infinite alternate;
}
@keyframes rotateFun {
  0% { transform: rotate(-7deg) scale(1.08); }
  100% { transform: rotate(9deg) scale(.97); }
}
.testimonial-card::before {
  content: '☺';
  font-size: 1.5em;
  color: #33A382;
  position: absolute;
  left: -37px;
  top: 18px;
}

/* SPACING, GAPS & FLEX-GAP ENFORCED ------------------------------------------------ */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* RESPONSIVE DESIGN --------------------------------------------------------------- */
@media (max-width: 768px) {
  html, body {
    font-size: 16px;
    padding: 0;
  }
  h1 { font-size: 2.04rem; }
  h2 { font-size: 1.3rem; }

  .container {
    padding: 0 7px;
  }
  .section, main section {
    padding: 25px 8px;
    margin-bottom: 34px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
  }
  .testimonial-card, .faq-list, .faq-item {
    padding: 18px 10px;
    flex-direction: column !important;
  }
  .features-grid > div, .faq-item, .card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin-bottom: 15px;
  }
  .company-data, footer nav {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .map-snippet { flex-direction: column; gap: 10px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 520px) {
  .company-data, footer nav { font-size: .91rem; }
  .footer .container { padding: 7px 4px; }
  .cookie-modal { min-width: 98vw; width: 98vw; max-width: 100vw; padding: 13px 7px 15px 7px; }
}

/*--- Hide cookie banner & modal if closed ---*/
.cookie-banner.hidden { display: none !important; }
.cookie-modal:not(.open) { display: none; opacity: 0 !important; }

/* AUXILIARY CLASSES --------------------------------------------------------------- */
.hidden { display: none !important; }
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
}

/* FUN FONTS for playfulness on some headings */
h1, h2, h3, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/*--- Playful details: Energetic underlines and accent borders on headings ---*/
h2 {
  border-bottom: 3px solid #ff9f1c;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 1.2px 0 #ffe066;
}

/* END OF CSS */
