/*=======================================================================
  Vivre Vert - Professional Corporate CSS (Flexbox Only)
  Brand Colors: #20523A (primary), #7AC38B (secondary), #F2F5EF (accent), #3C4959 (corporate blue/gray)
  Font Display: Montserrat, Font Body: Roboto
  Design: Elegant, Modern, Natural, Well-Being
=========================================================================*/
/*-----------------------------------*
  CSS Reset & Normalize
*-----------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F2F5EF;
  color: #22413B;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #20523A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #7AC38B;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 20px;
}
strong {
  font-weight: 700;
}
/*-----------------------------------*
  Brand Typography & Headings
*-----------------------------------*/
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #20523A;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  color: #22413B;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #3C4959;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
/*-----------------------------------*
  Container and General Spacing
*-----------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.cta-section {
  align-items: center;
  text-align: center;
  background: #E8F4ED;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(32,82,58,0.08);
  padding: 40px 20px;
  margin-top: 24px;
  gap: 18px;
}
@media (max-width: 768px) {
  .section, .cta-section {
    padding: 28px 10px;
  }
}
/*-----------------------------------*
  Main Navigation
*-----------------------------------*/
header {
  background: #F2F5EF;
  border-bottom: 1px solid #E2E6EA;
  box-shadow: 0 0 18px 0 rgba(60,73,89, 0.05);
  position: sticky;
  top: 0; /* For persistent header */
  z-index: 1200;
}
.logo img {
  height: 48px;
  width: auto;
}
.header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav.main-nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  color: #20523A;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #7AC38B;
  color: #fff;
}
nav.main-nav .cta-btn {
  background: #20523A;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(32,82,58,0.08);
  margin-left: 8px;
}
nav.main-nav .cta-btn:hover,
nav.main-nav .cta-btn:focus {
  background: #7AC38B;
  color: #20523A;
  box-shadow: 0 4px 20px rgba(32,82,58,0.15);
}
/* Mobile Nav */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #20523A;
  cursor: pointer;
  z-index: 1501;
  margin-left: 20px;
  transition: color 0.25s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #7AC38B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.55,0,.1,1);
  z-index: 2000;
  box-shadow: 2px 0 20px rgba(60,73,89,0.08);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 22px 10px 0;
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: #20523A;
  cursor: pointer;
  transition: color 0.25s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #7AC38B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 14px 36px 16px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #20523A;
  padding: 9px 0;
  font-weight: 500;
  border-radius: 7px;
  width: 100%;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8F4ED;
  color: #7AC38B;
}
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 920px) {
  nav.main-nav {
    gap: 10px;
  }
  .logo img {
    height: 38px;
  }
}
@media (max-width: 870px) {
  nav.main-nav {
    gap: 4px;
  }
  nav.main-nav a {
    font-size: 0.96rem;
    padding: 6px 7px;
  }
}
@media (max-width: 768px) {
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 4px;
  }
  .header .container {
    flex-direction: row;
    gap: 4px;
  }
}
/*-----------------------------------*
  Hero & Feature Sections
*-----------------------------------*/
/* Example: content-wrapper { flex column align-start } */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  list-style: none;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 0;
}
.feature-grid > li {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(60,73,89,0.07);
  padding: 26px 20px 24px 20px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-grid > li:hover {
  transform: translateY(-4px) scale(1.013);
  box-shadow: 0 8px 22px rgba(32,82,58,0.12);
}
.feature-grid img {
  height: 46px;
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
  color: #20523A;
}
.feature-grid p {
  font-size: 1rem;
  color: #3C4959;
}
/*-----------------------------------*
  Cards & Flex Containers
*-----------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(60,73,89,0.07);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow 0.20s, transform 0.15s;
}
.card:hover {
  transform: translateY(-3px) scale(1.011);
  box-shadow: 0 8px 28px rgba(32,82,58,0.09);
}
.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: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid>li {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
/*-----------------------------------*
  Feature List / Value List / Services
*-----------------------------------*/
.values-list,
.service-list,
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.values-list li, .service-list li, .blog-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.06rem;
  color: #3C4959;
}
.values-list img,
.service-list img,
.blog-list img {
  margin-top: 3px;
  width: 34px;
}
@media (max-width: 600px) {
  .values-list li, .service-list li, .blog-list li {
    gap: 10px;
    font-size: 0.97rem;
  }
}
/*-----------------------------------*
  Buttons & CTA
*-----------------------------------*/
.cta-btn,
button.cta-btn {
  background: #20523A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 3px 15px 0 rgba(32,82,58,0.07);
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.17s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.02em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #7AC38B;
  color: #20523A;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 24px rgba(32,82,58,0.11);
}
/*-----------------------------------*
  Testimonial Cards
*-----------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 2px 16px 0 rgba(60,73,89,0.09);
  border-radius: 13px;
  margin-bottom: 20px;
  color: #22413B;
  font-size: 1.12rem;
  max-width: 700px;
  transition: box-shadow 0.16s, transform 0.14s;
  border-left: 4px solid #7AC38B;
}
.testimonial-card p {
  color: #20523A;
  margin-bottom: 0;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #20523A;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(32,82,58,0.15);
  transform: translateY(-3px);
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.01rem;
    padding: 13px 10px;
  }
}
/*-----------------------------------*
  Map Placeholder & Misc
*-----------------------------------*/
.map-placeholder {
  background: #E8F4ED;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 10px 0;
  min-height: 120px;
}
/*-----------------------------------*
  Footer Styling
*-----------------------------------*/
footer {
  background: #22413B;
  color: #F2F5EF;
  margin-top: 60px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.footer-top {
  padding: 40px 0 22px 0;
  border-bottom: 1px solid #365D4F;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo img {
  height: 38px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.footer-menu a {
  color: #E8F4ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 3px 7px;
  border-radius: 6px;
  transition: background 0.17s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #22413B;
  background: #7AC38B;
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 0 8px 0;
  flex-wrap: wrap;
}
.company-info p {
  color: #F2F5EF;
  margin-bottom: 7px;
}
.footer-socials {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}
.footer-socials a img {
  height: 26px;
  opacity: 0.87;
  transition: opacity 0.14s, filter 0.13s;
  filter: grayscale(32%);
}
.footer-socials a:hover img, .footer-socials a:focus img {
  opacity: 1;
  filter: none;
}
.footer-legal {
  background: #20523A;
  color: #F2F5EF;
  text-align: center;
  font-size: 0.93rem;
  padding: 12px 0;
  border-top: 1px solid #365D4F;
}
@media (max-width: 960px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-menu {
    gap: 11px;
  }
}
@media (max-width: 480px) {
  .footer-menu {
    flex-direction: column;
    gap: 7px;
  }
}
/*-----------------------------------*
  Cookie Consent Banner & Modal
*-----------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 5000;
  padding: 26px 20px;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(60,73,89,0.13);
  gap: 30px;
  transition: transform 0.4s, opacity 0.2s;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-message {
  flex: 1 1 auto;
  color: #22413B;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  background: #20523A;
  color: #fff;
  transition: background 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #7AC38B;
  color: #20523A;
}
.cookie-banner .settings-btn {
  background: #3C4959;
  color: #fff;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #7AC38B;
  color: #20523A;
}
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.98rem;
    padding: 18px 10px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}
/* Cookie Modal Popup */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 6000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(45,70,64,0.50);
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal.active {
  display: flex;
  animation: cookieModalFadeIn 0.4s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px 18px 0 0;
  max-width: 430px;
  width: 100vw;
  padding: 36px 24px 22px 24px;
  box-shadow: 0 4px 42px 0 rgba(32,82,58,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookieSlideUp 0.4s;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-modal-content h3 {
  font-size: 1.23rem;
  color: #20523A;
  margin-bottom: 8px;
}
.cookie-modal-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-setting-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-setting-label {
  flex: 1 1 auto;
  color: #22413B;
}
/* Switch for toggles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E2E6EA;
  border-radius: 24px;
  transition: background 0.24s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #7AC38B;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 4px; bottom: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: none;
  font-size: 1.9rem;
  color: #20523A;
  cursor: pointer;
  transition: color 0.23s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #7AC38B;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    border-radius: 14px 14px 0 0;
    max-width: 95vw;
    padding: 23px 8px 15px 8px;
  }
}
/*-----------------------------------*
  Utility Classes
*-----------------------------------*/
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
/*-----------------------------------*
  Responsive Typography
*-----------------------------------*/
@media (max-width: 1100px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 680px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  .subheadline { font-size: 0.98rem; }
}
/*-----------------------------------*
  Accessibility, Transitions, Focus
*-----------------------------------*/
button,
.cta-btn,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #3C4959;
  outline-offset: 1px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #7AC38B;
}
*:focus-visible {
  outline: 2px solid #7AC38B;
  outline-offset: 1px;
}
/*-----------------------------------*
  Misc: Table, Code, Selection
*-----------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
th, td {
  border: 1px solid #E2E6EA;
  padding: 10px 8px;
}
th {
  background: #E8F4ED;
  color: #20523A;
}
tr:nth-child(even) td {
  background: #f8faf9;
}
code {
  background: #E2E6EA;
  color: #20523A;
  border-radius: 4px;
  padding: 2px 5px;
  font-family: monospace;
}
::selection {
  background: #7AC38B;
  color: #fff;
}
/*-----------------------------------*
  Hide Scrollbars for Overlays
*-----------------------------------*/
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  display: none;
}
.mobile-menu,
.cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/*-----------------------------------*
  END Vivre Vert Professional Corporate Flexbox CSS
*-----------------------------------*/
