/* ========================
   Nimble Wrap "modern_bold" Style CSS
   ======================== */
/* CSS RESET & BASELINE ------------------------- */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F4EFEA;
  color: #20434B;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
}
* {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}

/* TYPOGRAPHY --------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #20434B;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, ul, ol, li, blockquote, span, label {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #20434B;
}
strong {
  font-weight: 700;
}
blockquote {
  border-left: 4px solid #7CA99B;
  padding-left: 16px;
  color: #20434B;
  margin-bottom: 12px;
  font-style: italic;
  font-size: 1.1rem;
}

/* CONTAINER + CONTENT WRAPPER ------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* HEADER & NAVIGATION -------------------------- */
header {
  background: #FFF;
  border-bottom: 2px solid #e0e5e7;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #20434B;
  transition: color .2s;
  padding: 8px 0;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #7CA99B;
}
.main-nav .button-primary {
  margin-left: 12px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  padding: 8px 12px;
  background: #7CA99B;
  color: #fff;
  border-radius: 8px;
  margin-left: 22px;
  border: none;
  transition: background .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #20434B;
  color: #fff;
}

/* MOBILE MENU ------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #20434B;
  color: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform .4s cubic-bezier(.86,0,.07,1);
  transform: translateX(-100%);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 32px 0 0 28px;
  align-self: flex-start;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #7CA99B;
}
.mobile-nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 14px 0;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: #7CA99B;
  color: #20434B;
}

/* HERO BANNER ----------------------------------- */
.hero {
  background: #20434B;
  color: #fff;
  padding: 60px 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  color: #fff;
  align-items: flex-start;
  gap: 28px;
}
.hero h1,
.hero h2 {
  color: #fff;
}
.hero p {
  color: #FFF;
  font-size: 1.18rem;
}
.hero .button-primary {
  background: #7CA99B;
  color: #20434B;
  border: none;
}
.hero .button-primary:hover,
.hero .button-primary:focus {
  background: #fff;
  color: #20434B;
  box-shadow: 0 1px 10px 0 rgba(32,67,75,.18);
}

/* MAIN SECTIONS LAYOUT -------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(32,67,75,.07);
}
.features ul,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.features ul li,
.feature-grid li {
  flex: 1 1 260px;
  min-width: 210px;
  background: #F4EFEA;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(32,67,75,.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .2s, transform .18s;
}
.features ul li:hover,
.feature-grid li:hover {
  box-shadow: 0 8px 24px rgba(32,67,75,.17);
  transform: translateY(-8px);
}
.features img,
.feature-grid img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.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 16px rgba(32,67,75,.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 240px;
  flex: 1 1 320px;
}

.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;
}
.service-list ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonials {
  background: #F4EFEA;
  border: 2px solid #7CA99B33;
  box-shadow: 0 2px 12px rgba(32,67,75,.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(32,67,75,.08);
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 700px;
  border-left: 6px solid #7CA99B;
}
.testimonial-card blockquote {
  color: #20434B;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-style: normal;
  border: none;
}
.testimonial-card span {
  color: #7CA99B;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

/* FAQ / LEGALS / VALUES / CONTACT --------------- */
.legal-section, .about-section, .confirmation-section, .contact-section, .values-section, .faq, .cta-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(32,67,75,.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section ul {
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.07rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.cta-section .button-primary {
  align-self: flex-start;
}
.confirmation-section, .legal-section {
  text-align: left;
  align-items: flex-start;
}

/* BUTTONS -------------------------------------- */
.button-primary {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: #20434B;
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(32,67,75,0.07),0 1px 2px rgba(32,67,75,0.02);
  transition: background .19s, color .19s, box-shadow .2s, transform .15s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  text-align: center;
}
.button-primary:hover,
.button-primary:focus {
  background: #7CA99B;
  color: #20434B;
  box-shadow: 0 6px 24px rgba(32,67,75,0.22);
  transform: translateY(-3px) scale(1.02);
}
.button-secondary {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  background: #7CA99B;
  color: #20434B;
  padding: 10px 28px;
  border: none;
  border-radius: 18px;
  margin-right: 12px;
  transition: background .15s, color .15s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #20434B;
  color: #fff;
}
.button-tertiary {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  background: #fff;
  color: #7CA99B;
  border: 2px solid #7CA99B;
  padding: 10px 26px;
  border-radius: 18px;
  transition: background .15s, color .15s;
}
.button-tertiary:hover,
.button-tertiary:focus {
  background: #7CA99B;
  color: #fff;
}

/* FOOTER --------------------------------------- */
footer {
  background: #20434B;
  color: #fff;
  padding: 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 14px 0 rgba(32,67,75,.12);
}
footer .container {
  padding-top: 26px;
  padding-bottom: 32px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-info img {
  width: 56px;
  margin-bottom: 4px;
}
.footer-info a {
  color: #7CA99B;
  transition: color .16s;
}
.footer-info a:hover {
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #7CA99B;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
  background: #7CA99B;
}
.copyright {
  margin-top: 18px;
  color: #F4EFEA;
  font-size: .94rem;
}

/* COOKIE CONSENT BANNER -------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #20434B;
  color: #fff;
  z-index: 2000;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 18px rgba(32,67,75,0.10);
  transition: transform .34s cubic-bezier(.79,0,.175,1), opacity .18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(80px);
  pointer-events: none;
}
.cookie-banner__buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary,
.cookie-banner .button-tertiary {
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 16px;
}
.cookie-banner .button-secondary {
  background: #fff;
  color: #20434B;
  border: 2px solid #7CA99B;
}
.cookie-banner .button-secondary:hover {
  background: #7CA99B;
  color: #fff;
}
.cookie-banner .button-tertiary {
  background: #7CA99B;
  color: #20434B;
  border: none;
}
.cookie-banner .button-tertiary:hover {
  background: #fff;
  color: #20434B;
}
/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  width: 100vw;
  height: 100vh;
  background: rgba(32,67,75,.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal__content {
  background: #fff;
  color: #20434B;
  border-radius: 20px;
  padding: 38px 28px 28px 28px;
  width: 100%;
  max-width: 430px;
  box-shadow: 0 6px 36px 0 rgba(32,67,75,.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeIn .33s cubic-bezier(.42,0,.61,1.36);
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 2rem;
  color: #7CA99B;
  background: none;
  border: none;
  transition: color .15s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #20434B;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 22px 0 10px 0;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-pref-category label {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-left: 12px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #7CA99B;
  border-radius: 22px;
  transition: background .18s;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.switch input:checked + .switch-slider {
  background: #20434B;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(18px);
}
.switch input:disabled + .switch-slider {
  background: #b5c1be;
}

/* MICRO-ANIMATION FOR BUTTONS ------------------ */
.button-primary, .button-secondary, .button-tertiary {
  transition: box-shadow .18s, transform .16s, background .16s, color .16s;
}
.button-primary:active,
.button-secondary:active,
.button-tertiary:active {
  transform: scale(0.97);
}

/* SPACING UTILS -------------------------------- */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mt-32 { margin-top: 32px!important; }
.mb-32 { margin-bottom: 32px!important; }

/* RESPONSIVE DESIGN ========================== */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 990px) {
  .container {
    max-width: 94vw;
  }
  .main-nav {
    gap: 18px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero, .testimonials, .section, section, .legal-section, .about-section, .confirmation-section, .contact-section, .values-section, .faq, .cta-section {
    padding: 30px 8px;
    border-radius: 18px;
  }
  header .container {
    flex-direction: row;
    height: 64px;
    padding-right: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    border-radius: 0 0 20px 20px;
    padding: 38px 0;
    margin-bottom: 36px;
  }
  .features ul, .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section, section {
    margin-bottom: 36px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 15px 8px;
    margin-bottom: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin-top: 11px;
    margin-bottom: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14px;
  }
  .hero h1 { font-size: 1.5rem; }
  .hero .button-primary { width: 100%; padding: 12px 0; }
  .cookie-modal__content { padding: 20px 8px 16px 8px; }
}

/* A11y FOCUS OUTLINES ------------------------ */
a:focus,
.button-primary:focus,
.button-secondary:focus,
.button-tertiary:focus,
.mobile-menu-close:focus,
.cookie-modal__close:focus {
  outline: 2px solid #7CA99B;
  outline-offset: 2px;
}

/* Z-INDEXES --------------------------------- */
header { z-index: 100; }
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 3000; }

/* END Nimble Wrap CSS */
