@font-face {
  font-family: Avenir Next;
  src: url('../fonts/font.zip') format("undefined");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Modern Color Palette */
  --white: #ffffff;
  --background-light-green-jaide: #e8f5e8;
  --green-jaide: #7ed957;
  --lighter-green-button: #aee882;
  --light-gray: #aeb3b7;
  --darker-darker-green: #196b24;
  --grey-text-jaide: #2d3748;
  --green-jaide-text: #88b874;
  --darker-green-button: #6dad30;
  --jaide-light-background-green: #f8fbf7;
  
  /* Modern Accent Colors - Green Theme */
  --primary-green: #7ed957;
  --primary-green-hover: #6dad30;
  --accent-green-light: #aee882;
  --accent-green-dark: #196b24;
  
  /* Modern Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Modern Gradients - Green Theme */
  --gradient-primary: linear-gradient(135deg, #7ed957 0%, #6dad30 100%);
  --gradient-secondary: linear-gradient(135deg, #aee882 0%, #7ed957 100%);
  --gradient-success: linear-gradient(135deg, #7ed957 0%, #196b24 100%);
  
  /* Modern Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Modern Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Modern Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

.w-layout-blockcontainer {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 0 var(--space-lg);
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--grey-text-jaide);
  background: linear-gradient(90deg, #f5fbf5 0%, #f8fcf8 15%, #ffffff 30%, #ffffff 70%, #f8fcf8 85%, #f5fbf5 100%);
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

h1 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-lg);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h4 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-xs);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--primary-green-hover);
  text-decoration: underline;
}

.section {
  object-fit: scale-down;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: var(--space-xl) 0;
  padding: var(--space-2xl) 0;
  font-size: 50px;
  font-weight: 800;
  display: flex;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.section.center {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  background-image: url('../images/Group-72-2.png');
  background-repeat: repeat-y;
  background-size: cover;
  background-blend-mode: overlay;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  display: flex;
  position: relative;
  top: 40px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.section.background {
  background: linear-gradient(135deg, var(--background-light-green-jaide) 0%, #e8f5e8 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: var(--space-2xl) 0;
  padding: var(--space-2xl);
}

.body {
  color: #56595b;
  background-color: #0000;
  margin-left: 0;
  margin-right: 0;
  font-family: Open Sans, sans-serif;
}

.feature-content {
  border: 1px solid transparent;
  flex: none;
  width: 50vw;
  max-width: 500px;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  animation: fadeInUp 0.8s ease-out;
}

.feature-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-content.icons {
  text-align: center;
  mix-blend-mode: normal;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 33.33%;
  max-width: none;
  padding: var(--space-xl);
  display: flex;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  animation: fadeInUp 0.8s ease-out;
}

.feature-content.icons:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-content.icons.results {
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 100%;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.feature-content.icons.results:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.button {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  border: none;
  border-radius: var(--radius-xl);
  margin-top: var(--space-lg);
  margin-bottom: 0;
  margin-right: 0;
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  transition: all var(--transition-normal);
  display: inline-block;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  animation: fadeInUp 1.2s ease-out;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  text-decoration: none;
}

.button:hover::before {
  left: 100%;
}

.button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.button.button2 {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  margin-top: var(--space-md);
}

.button.button2:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.title {
  color: var(--light-gray);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px #2e2e2e;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 27px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
  text-decoration: none;
  display: flex;
}

.nav-link {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  flex: 0 auto;
  margin: var(--space-xs);
  padding: 8px 12px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.nav-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
  text-decoration: none;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link.w--current {
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.nav-link.log {
  background: var(--gradient-primary);
}

.nav-link.log:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
}

.nav-link.nav2 {
  background: var(--darker-darker-green);
}

.nav-link.nav2:hover {
  background: var(--darker-darker-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.black-text {
  color: var(--grey-text-jaide);
  text-align: left;
  align-self: center;
  width: auto;
  height: auto;
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-subhead {
  color: var(--grey-text-jaide);
  flex-flow: row;
  align-self: flex-start;
  max-width: 600px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: block;
  overflow: visible;
  background: linear-gradient(135deg, #aee882 0%, #196b24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 1s ease-out;
  box-shadow: none !important;
  text-shadow: none !important;
}

.feature-icon {
  max-width: none;
  margin-bottom: 20px;
  font-size: 50px;
  line-height: 50px;
  transition: all var(--transition-normal);
  border-radius: 50% !important;
  overflow: hidden;
  transform: none !important;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  min-width: 200px !important;
  min-height: 200px !important;
  flex-shrink: 0 !important;
  aspect-ratio: 1 / 1 !important;
}

.feature-icon:hover {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  transform: scale(1.05) !important;
  border-radius: 50% !important;
  cursor: pointer;
  box-shadow: none !important;
  filter: grayscale(100%);
}

/* Quand on survole la photo, l'icône LinkedIn devient grise aussi */
.cell-8:hover a img[src*="Linkedin"],
.cell-9:hover a img[src*="Linkedin"],
.cell-19:hover a img[src*="Linkedin"] {
  filter: grayscale(100%) !important;
  transform: scale(1.05) !important;
}

/* Effet spécifique pour toutes les photos */
.cell-19:hover .feature-icon.testhover.zoomhov1,
.cell-8:hover .feature-icon.testhover2,
.cell-9:hover .feature-icon.testhover3,
.cell-9:hover .feature-icon.testhover4 {
  filter: grayscale(100%) !important;
}

/* Espacement spécifique pour les liens LinkedIn dans la page équipe */
.cell-8 a[href*="linkedin"], 
.cell-9 a[href*="linkedin"], 
.cell-19 a[href*="linkedin"] {
  margin-bottom: 0.75rem !important;
}

/* Règle spécifique pour les liens w-inline-block dans les cellules équipe */
.cell-8 .w-inline-block, 
.cell-9 .w-inline-block, 
.cell-19 .w-inline-block {
  margin-bottom: 0.75rem !important;
}

/* Centrage spécifique pour les textes de descriptions dans l'équipe */
.cell-8 .green-text, 
.cell-9 .green-text, 
.cell-19 .green-text {
  justify-content: center !important;
  text-align: center !important;
  align-items: center !important;
}

.feature-icon.testhover.zoomhov1, .feature-icon.testhover2, .feature-icon.testhover3, .feature-icon.testhover4 {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-width: 200px !important;
  min-height: 200px !important;
  flex-shrink: 0 !important;
  aspect-ratio: 1 / 1 !important;
  transition: all var(--transition-normal);
}

.feature-icon.testhover.zoomhov1:hover, 
.feature-icon.testhover2:hover, 
.feature-icon.testhover3:hover, 
.feature-icon.testhover4:hover {
  opacity: 1;
  transform: scale(1.05) !important;
  border-radius: 50% !important;
  cursor: pointer;
  box-shadow: none !important;
  filter: grayscale(100%) !important;
}

/* Règles spécifiques pour chaque photo */
.feature-icon.testhover.zoomhov1:hover {
  filter: grayscale(100%) !important;
}

.feature-icon.testhover2:hover {
  filter: grayscale(100%) !important;
}

.feature-icon.testhover3:hover {
  filter: grayscale(100%) !important;
}

.feature-icon.testhover4:hover {
  filter: grayscale(100%) !important;
}

.nav-menu-2 {
  flex-flow: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-3 {
  color: var(--grey-text-jaide);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.green-text {
  color: var(--green-jaide-text);
  text-align: center;
  align-self: center;
  margin-bottom: var(--space-md);
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  font-size: 1rem;
  width: 100%;
  max-width: 220px;
  justify-content: center;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.link-3 {
  color: var(--light-gray);
  text-decoration: none;
}

.link-3:hover {
  color: var(--green-jaide);
  font-weight: 300;
  text-decoration: underline;
}

.aboutus {
  color: var(--grey-text-jaide);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.image-9 {
  width: 100%;
}

.navbar-logo-left {
  z-index: 999;
  mix-blend-mode: normal;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  margin-bottom: -15px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 2px 3px #0003;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
}

.navbar-logo-left-container.shadow-three {
  background-color: #fff;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
}

.container-3 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-lg);
}

.container-3.spec {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-lg);
}

.navbar-wrapper {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 1400px;
  display: flex;
}

.image-11 {
  max-width: 80%;
  font-size: 14px;
  line-height: 11px;
}

.image-11.footer {
  align-self: center;
  min-width: 2px;
  max-width: 135px;
}

.image-12 {
  border-radius: 0%;
  max-width: 100%;
}

.image-12:hover {
  mix-blend-mode: normal;
}

.quick-stack {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  margin-top: 20px;
  margin-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}

.heading-5 {
  color: var(--grey-text-jaide);
  text-align: center;
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin: 20px -10px;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 50px;
  line-height: 120%;
  display: block;
}

.text-span {
  color: var(--green-jaide);
}

.bold-text {
  color: var(--green-jaide-text);
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: inline;
}

.text-span-2 {
  color: var(--green-jaide);
}

.bold-text-2 {
  color: var(--green-jaide-text);
}

.text-span-3 {
  color: var(--green-jaide-text);
  font-weight: 700;
}

.paragraph-9 {
  color: var(--grey-text-jaide);
  font-size: 18px;
  font-weight: 400;
}

.quick-stack-2 {
  box-sizing: border-box;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: 20px;
  padding: 0 20px;
}

.cell {
  text-align: center;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 0;
  padding-right: 0;
}

.cell-2 {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 0;
  display: flex;
}

.image-14 {
  transform: rotate(180deg);
}

.subtitle {
  color: var(--grey-text-jaide);
  text-align: center;
  -webkit-text-stroke-color: var(--green-jaide-text);
  max-width: 1400px;
  margin-top: 120px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 44px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
}

.text-span-4, .text-span-5 {
  color: var(--green-jaide-text);
}

.subtitle2 {
  color: var(--grey-text-jaide);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 29px;
  font-weight: 400;
  line-height: 40px;
}

.cell-3, .cell-4 {
  justify-content: flex-start;
  align-items: center;
}

.paragraph-10 {
  color: var(--grey-text-jaide);
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
}

.paragraph-10.big {
  font-size: 22px;
}

.text-span-6, .text-span-7 {
  color: var(--green-jaide-text);
}

.cell-5 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.cell-6, .cell-7 {
  justify-content: center;
  align-items: center;
}

.cell-8, .cell-9, .cell-19 {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 220px;
  margin: 0 0.25rem;
  flex: 0 0 auto;
}

/* Centrer parfaitement les conteneurs de photos */
.container-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Centrer les icônes LinkedIn */
.cell-8 a, .cell-9 a, .cell-19 a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.75rem !important;
}

.icon-jaide {
  margin-top: 20px;
  margin-bottom: 20px;
}

.icon-jaide.spec {
  margin-top: 25px;
  margin-bottom: 25px;
}

.icon-jaide.spec-copy {
  margin-top: 22px;
  margin-bottom: 22px;
}

.cell-12 {
  justify-content: flex-start;
  align-items: center;
}

.cell-13 {
  justify-content: center;
  align-items: center;
}

.quick-stack-3 {
  margin-bottom: 60px;
}

.quick-stack-4 {
  margin-top: 20px;
  margin-bottom: 100px;
}

.quick-stack-5 {
  margin-top: 20px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  flex-wrap: nowrap !important;
}

.flex-block {
  flex-flow: column;
  margin-bottom: 60px;
}

.paragraph-11 {
  color: var(--light-gray);
  margin-bottom: 0;
  margin-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  text-decoration: none;
}

.paragraph-11.linkfoot:hover {
  color: var(--green-jaide);
}

.quick-stack-6 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-self: stretch;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cell-14 {
  justify-content: center;
  align-items: center;
}

.cell-15 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.image-15 {
  transform: rotate(0);
}

.cell-16 {
  color: var(--grey-text-jaide);
}

.cell-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.image-16 {
  transform: rotate(180deg);
}

.cell-18 {
  grid-column-gap: 6px;
  grid-row-gap: 16px;
  grid-template: "Area"
                 "."
                 / 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-span-8, .text-span-9 {
  color: var(--green-jaide-text);
  font-weight: 700;
}

.cell-19 {
  justify-content: flex-start;
  align-items: center;
}

.link-4 {
  color: var(--light-gray);
  font-size: 16px;
  font-weight: 300;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 0.75rem;
  transition: all var(--transition-normal);
  width: 200px;
}

.link-4:hover {
  color: var(--light-gray);
  transform: scale(1.05);
  filter: grayscale(100%);
  opacity: 1;
}

.image-17 {
  margin-top: -70px;
  margin-bottom: 40px;
}

.cell-20, .cell-21 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.link-block {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.link-block-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  color: var(--grey-text-jaide);
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 800;
  line-height: 42px;
}

.heading.policy {
  margin-bottom: 60px;
}

.heading.spec {
  margin-bottom: -120px;
}

.quick-stack-7 {
  margin-top: 40px;
  margin-bottom: 60px;
  text-decoration: none;
}

.link-block-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--background-light-green-jaide);
  border-radius: 15px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  padding: 10px;
  font-style: normal;
  text-decoration: none;
  transition: box-shadow .4s;
  display: flex;
  transition: all var(--transition-normal);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.link-block-3:hover {
  box-shadow: 0 8px 20px -5px #0003;
  transform: translateY(-4px);
  background: var(--white);
}

.heading-6 {
  color: var(--grey-text-jaide);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  line-height: 140%;
  text-decoration: none;
}

.paragraph-12 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.paragraph-13 {
  font-size: 15px;
}

.paragraph-14 {
  color: var(--light-gray);
  flex: 0 auto;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 300;
  line-height: 140%;
  overflow: visible;
}

.cell-22 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  line-height: 80px;
  text-decoration: none;
}

.container-4 {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  margin-bottom: 20px;
  display: block;
  overflow: hidden;
}

.image-18 {
  display: block;
}

.text-block {
  color: var(--grey-text-jaide);
  font-family: Open Sans, sans-serif;
}

.cell-23, .cell-24 {
  justify-content: center;
  align-items: center;
}

.paragraphfooter {
  color: var(--light-gray);
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
}

.image-19 {
  margin-right: 10px;
}

.image-20 {
  margin-left: 10px;
}

.heading-2 {
  color: var(--grey-text-jaide);
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
}

.paragraph-15 {
  color: var(--grey-text-jaide);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 180%;
}

.link-5 {
  color: var(--grey-text-jaide);
  text-decoration: none;
}

.link-5:hover {
  color: var(--green-jaide);
}

.logo-banner-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  height: 62%;
  max-height: 472px;
  margin-right: auto;
  line-height: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.background-video {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.quick-stack-video {
  margin-top: 20px;
  margin-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}

.background-video-2 {
  align-self: center;
  min-width: 421px;
  overflow: visible;
}

.background-video-3 {
  z-index: 2;
  box-sizing: content-box;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid var(--background-light-green-jaide);
  object-fit: cover;
  border-radius: 10px;
  flex-flow: column;
  flex: 0 auto;
  order: 2;
  justify-content: flex-end;
  align-self: flex-start;
  align-items: flex-start;
  width: 120px;
  max-width: 100%;
  height: 240px;
  max-height: 100%;
  margin-top: -150px;
  margin-bottom: 0;
  margin-left: 30px;
  display: flex;
  position: relative;
  inset: 0;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.background-video-3.position {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.background-video-4 {
  z-index: 1;
  box-sizing: content-box;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--background-light-green-jaide);
  object-fit: fill;
  border-radius: 6px;
  order: 2;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  width: 800px;
  min-width: 0%;
  height: 389px;
  min-height: 0%;
  display: flex;
  left: 0;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.cell-25 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 12px;
  display: flex;
}

.cell-26 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.quick-stack-8 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding: 0;
}

.image-21 {
  z-index: 0;
  clear: both;
  margin-top: -40px;
  position: relative;
}

.image-22 {
  z-index: 20;
  position: relative;
}

.image-23, .image-24 {
  border-radius: 20px;
}

.section-2 {
  display: flex;
}

.list {
  flex: 0 auto;
  align-self: stretch;
  font-size: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey-text-jaide);
}

.list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-jaide);
  font-weight: bold;
  font-size: 1.2rem;
}

.cell-29 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.italic-text, .italic-text-2 {
  color: var(--green-jaide-text);
}

.italic-text-3, .italic-text-4 {
  color: var(--green-jaide-text);
  font-style: normal;
}

.cell-30 {
  color: var(--light-gray);
}

.section-3 {
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section-4 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.link-6 {
  display: inline-block;
}

.div-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lang-btn {
  color: var(--grey-text-jaide);
  margin-left: 8px;
  margin-right: 6px;
  padding-left: 4px;
  padding-right: 4px;
  font-weight: 600;
  text-decoration: none;
}

.lang-btn:hover {
  color: var(--green-jaide);
}

.cell-31 {
  justify-content: center;
  align-items: flex-end;
}

.heading-7 {
  color: var(--grey-text-jaide);
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 41px;
  line-height: 100%;
}

.field-label {
  color: var(--grey-text-jaide);
  font-family: Open Sans, sans-serif;
}

.paragraph-16 {
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  line-height: 140%;
}

.text-field {
  aspect-ratio: auto;
  background-color: var(--white);
  color: var(--light-gray);
  border-radius: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.text-field:active {
  color: var(--grey-text-jaide);
}

.text-field:focus {
  border: 1px solid var(--green-jaide);
  color: var(--grey-text-jaide);
}

.checkbox-label {
  color: var(--grey-text-jaide);
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
}

.checkbox {
  border: 1px solid var(--light-gray);
  color: var(--light-gray);
}

.checkbox:active {
  border-color: var(--green-jaide);
  background-color: var(--green-jaide);
}

.textarea {
  color: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 20px;
  font-family: Open Sans, sans-serif;
}

.textarea:active {
  color: var(--grey-text-jaide);
}

.textarea:focus {
  border: 1px solid var(--green-jaide);
  color: var(--grey-text-jaide);
}

.recaptcha {
  margin-top: 10px;
  margin-bottom: 20px;
}

.submit-button {
  background-color: var(--green-jaide);
}

.submit-button.nav-link {
  vertical-align: baseline;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
  position: static;
}

.cell-32 {
  background-color: var(--background-light-green-jaide);
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}

.quick-stack-9 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.form {
  display: block;
}

.cell-33, .cell-34, .cell-35, .cell-36, .cell-37, .cell-38, .cell-39, .cell-40, .cell-41, .cell-42, .cell-43, .cell-44, .cell-45, .cell-46 {
  justify-content: center;
  align-items: center;
}

.logo-track {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  line-height: 80px;
  display: flex;
}

.quick-stack-10 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  text-align: left;
  width: 140vw;
  min-width: 145vw;
  margin-left: -25px;
  margin-right: -25px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
}

.logo {
  object-fit: contain;
  width: 250px;
  height: 100px;
}

.cell-47 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.cell-48, .cell-49, .cell-50, .cell-51 {
  justify-content: center;
  align-items: center;
}

.image-25 {
  max-width: 100%;
  height: 80px;
  margin-right: 0;
}

.image-26 {
  max-width: 60%;
  height: 80px;
}

.left-fade {
  z-index: 10;
  background-image: linear-gradient(90deg, #fff, #fff0);
  width: 180px;
  height: 140px;
  position: relative;
  top: 175px;
  bottom: auto;
  left: -611px;
}

.right-fade {
  background-image: linear-gradient(90deg, #fff0, #fff);
  width: 180px;
  height: 140px;
  margin-bottom: -60px;
  position: relative;
  top: -160px;
  right: -611px;
}

.image-27 {
  height: 120px;
}

.image-28 {
  height: 120px;
  margin-left: 0;
}

.image-29 {
  height: 70px;
}

.image-30 {
  height: 140px;
}

.success-message {
  border: 2px solid var(--green-jaide);
  background-color: var(--white);
  color: var(--green-jaide);
  border-radius: 14px;
  font-family: Open Sans, sans-serif;
}

.text-block-2 {
  color: var(--grey-text-jaide);
  text-align: left;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 34px;
    line-height: 44px;
  }

  h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .section {
    margin-top: 0;
  }

  .section.center {
    flex-direction: column;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
  }

  .feature-content.icons.results {
    justify-content: flex-start;
    align-items: center;
  }

  .button {
    float: none;
    margin-top: 20px;
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link {
    padding-top: 8px;
  }

  .nav-link:hover {
    box-shadow: none;
  }

  .black-text {
    text-align: center;
    height: auto;
    line-height: 100%;
  }

  .hero-subhead {
    float: left;
    flex: 0 auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 33px;
    line-height: 35px;
  }

  .feature-icon {
    flex: none;
  }

  .nav-menu-2 {
    background-color: var(--white);
    min-width: 240px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .green-text {
    line-height: 140%;
  }

  .aboutus {
    min-height: 46px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .container-3 {
    max-width: 728px;
  }

  .navbar-wrapper {
    width: 100%;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .image-11 {
    max-width: 90%;
    padding-left: 20px;
  }

  .heading-5 {
    margin-top: 20px;
    font-size: 29px;
  }

  .subtitle {
    margin-top: 60px;
    font-size: 24px;
    line-height: 34px;
  }

  .subtitle2 {
    font-size: 24px;
  }

  .paragraph-10 {
    font-size: 14px;
    line-height: 150%;
  }

  .cell-6 {
    font-size: 24px;
  }

  .icon-jaide.spec-copy {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .cell-12 {
    justify-content: flex-start;
    align-items: center;
  }

  .quick-stack-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .image-15 {
    max-width: 50%;
  }

  .heading-2 {
    font-size: 18px;
  }

  .paragraph-15 {
    font-size: 14px;
  }

  .logo-banner-wrap {
    max-width: 728px;
  }

  .background-video-3 {
    width: 70px;
    height: 135px;
    margin-top: -80px;
    margin-left: -35px;
  }

  .background-video-4 {
    justify-content: center;
    align-self: stretch;
    align-items: center;
    width: 410px;
    height: 202px;
    position: relative;
  }

  .cell-27 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .section-2.section {
    display: none;
  }

  .list {
    font-size: 14px;
  }

  .quick-stack-10 {
    min-width: 200vw;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .section {
    text-align: center;
    object-fit: fill;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    line-height: 100%;
  }

  .section.center {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom: 20px;
  }

  .feature-content.icons {
    text-align: left;
    align-items: flex-start;
    width: auto;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-content.icons.results {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
  }

  .button {
    z-index: auto;
    position: relative;
    top: auto;
    left: auto;
  }

  .title {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .black-text {
    align-self: center;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    left: auto;
  }

  .hero-subhead {
    float: none;
    text-align: left;
    width: 100%;
    margin-bottom: 18px;
    margin-right: 10px;
    padding-right: 0;
    font-size: 30px;
    line-height: 110%;
  }

  .feature-icon {
    align-self: center;
    position: relative;
    left: auto;
  }

  .nav-menu-2 {
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .paragraph-3 {
    align-self: center;
    font-size: 24px;
  }

  .green-text {
    text-align: center;
    align-self: center;
    font-size: 14px;
    line-height: 140%;
  }

  .aboutus {
    font-size: 14px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .container-3 {
    min-height: 5px;
  }

  .container-3.spec {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .image-11.footer {
    max-width: 70%;
  }

  .quick-stack {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 0;
  }

  .heading-5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 23px;
    line-height: 140%;
  }

  .paragraph-9 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .cell {
    justify-content: flex-end;
    align-items: center;
  }

  .cell-2 {
    justify-content: center;
    align-items: flex-start;
  }

  .subtitle {
    margin-top: 20px;
    font-size: 24px;
    line-height: 140%;
  }

  .paragraph-10 {
    text-align: left;
    font-size: 14px;
  }

  .paragraph-10.big {
    font-size: 20px;
  }

  .cell-6 {
    justify-content: center;
    align-items: center;
  }

  .icon-jaide {
    margin-bottom: 20px;
  }

  .icon-jaide.spec, .icon-jaide.spec-copy {
    margin-bottom: 27px;
  }

  .quick-stack-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 0;
  }

  .quick-stack-4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .quick-stack-5 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 10px;
  }

  .quick-stack-6 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-15 {
    max-width: 40%;
  }

  .cell-16 {
    justify-content: center;
    align-items: center;
  }

  .image-16 {
    max-width: 40%;
  }

  .paragraph-15 {
    font-size: 12px;
  }

  .logo-banner-wrap {
    min-height: 5px;
  }

  .logo-banner-wrap.spec {
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }

  .quick-stack-video {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 0;
  }

  .background-video-3 {
    width: 45px;
    height: 100px;
    margin-top: -50px;
    margin-left: 0;
  }

  .background-video-4 {
    justify-content: flex-end;
    align-self: flex-end;
    align-items: flex-start;
    width: 284px;
    height: 135px;
  }

  .quick-stack-8 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .list-item {
    line-height: 120%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 60px;
    line-height: 70px;
  }

  h3 {
    font-size: 16px;
  }

  .section {
    text-indent: 10px;
    min-width: auto;
    max-width: none;
    min-height: auto;
    font-size: 40px;
    font-weight: 800;
    line-height: 100%;
    position: static;
    left: 65px;
  }

  .section.center {
    margin: 20px 0 40px;
    padding-bottom: 0;
    position: static;
  }

  .feature-content {
    align-self: center;
    width: auto;
    max-width: 90vw;
  }

  .button {
    text-indent: 0;
    object-fit: fill;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: auto;
    margin: 10px 0 40px;
    padding: 10px 25px;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    top: 0;
    left: auto;
  }

  .title {
    text-indent: 0;
    padding-top: 0;
    font-size: 10px;
  }

  .nav-link {
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link:hover {
    color: #8ece6e;
  }

  .nav-link.w--current {
    margin-top: 60px;
  }

  .black-text {
    text-align: center;
    text-indent: 0;
    width: auto;
    max-width: none;
    font-size: 14px;
  }

  .hero-subhead {
    direction: rtl;
    text-align: left;
    text-indent: 0;
    flex-flow: column;
    justify-content: center;
    align-self: auto;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 36px;
    line-height: 120%;
    display: block;
  }

  .feature-icon {
    align-self: center;
    width: 100%;
    max-width: 80vw;
    margin-bottom: 20px;
  }

  .feature-icon.testhover, .feature-icon.testhover2 {
    margin-bottom: 10px;
  }

  .nav-menu-2 {
    background-color: #fff;
    min-width: auto;
  }

  .paragraph-3 {
    text-indent: 0;
    align-self: center;
    margin-top: 10px;
    font-size: 20px;
    line-height: 50px;
  }

  .green-text {
    text-align: center;
    text-indent: 0;
    font-size: 12px;
    line-height: 150%;
  }

  .aboutus {
    text-indent: 0;
  }

  .navbar-logo-left-container.shadow-three {
    padding-bottom: 0;
  }

  .container-3 {
    max-width: none;
    margin-bottom: 20px;
  }

  .navbar-wrapper {
    flex-flow: column;
  }

  .menu-button-2 {
    margin-top: 40px;
  }

  .image-11.footer {
    max-width: 50%;
  }

  .image-12 {
    max-width: 120%;
    margin-top: 10px;
    margin-left: -30px;
    margin-right: -30px;
  }

  .quick-stack {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-5 {
    text-indent: 0;
    margin-top: 10px;
    margin-left: -20px;
    margin-right: -20px;
    font-size: 20px;
  }

  .paragraph-9 {
    text-indent: 0;
    margin-top: 10px;
    font-size: 13px;
    line-height: 150%;
  }

  .quick-stack-2 {
    width: 390px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cell {
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
  }

  .cell-2 {
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
  }

  .subtitle {
    text-indent: 0;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .subtitle2 {
    text-indent: 0;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    line-height: 140%;
  }

  .cell-3, .cell-4 {
    text-indent: 0;
  }

  .paragraph-10 {
    text-indent: 0;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .paragraph-10.big {
    font-size: 16px;
  }

  .cell-6 {
    text-indent: 0;
  }

  .cell-9 {
    justify-content: flex-start;
    align-items: center;
  }

  .icon-jaide.spec {
    margin-bottom: 20px;
  }

  .quick-stack-3 {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-11 {
    text-indent: 0;
    font-size: 10px;
  }

  .quick-stack-6 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .cell-15 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .image-15 {
    margin-left: 0;
  }

  .cell-17 {
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    font-size: 40px;
  }

  .cell-18 {
    text-indent: 0;
    justify-content: center;
    align-items: center;
  }

  .link-4 {
    text-indent: 0;
    font-size: 12px;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .quick-stack-7 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-6 {
    font-size: 14px;
  }

  .paragraph-12 {
    font-size: 12px;
  }

  .paragraphfooter {
    text-align: left;
    text-indent: 0;
  }

  .heading-2 {
    font-size: 16px;
    line-height: 140%;
  }

  .paragraph-15 {
    font-size: 10px;
  }

  .logo-banner-wrap {
    max-width: none;
    margin-bottom: 20px;
  }

  .quick-stack-video {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .background-video-3 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 220px;
    margin-top: 20px;
    margin-left: -30px;
    display: flex;
  }

  .background-video-4 {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 330px;
    height: 160px;
    margin-left: -5px;
  }

  .quick-stack-8 {
    width: 390px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cell-27 {
    justify-content: center;
    align-items: center;
  }

  .cell-28 {
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .list {
    font-size: 14px;
  }

  .list-item {
    text-indent: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .cell-31, .image-31 {
    display: none;
  }
}

#w-node-f21dad1d-4b12-59f8-bc31-410c8ae5a7d4-6015697f {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr;
}

#w-node-d4aa14bb-d097-d5bf-412d-77886ccfa966-6015697f {
  grid-template-rows: auto auto;
  grid-template-columns: .5fr 1.75fr .5fr;
}

#w-node-e015184c-2a86-3ee1-3eec-dbd995b4d5c1-6015697f {
  grid-column: span 3 / span 3;
}

#w-node-_3879867c-dff8-1bbc-b38c-33b733a4c4ed-6015697f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_14623b80-0f57-0600-a4af-877934016f55-6015697f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_3814c80a-73b8-891e-e930-78033e1bd2dd-6015697f, #w-node-d5e11b5f-4023-fc93-bde3-ca72930c3c57-6015697f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_436599d1-8723-e380-c191-aa14a4def84e-6015697f {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-6015697f {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-d3c6faf0-e1bf-4968-682f-120b7c1c473a-6015697f, #w-node-_328831c6-055a-51c6-a523-1db1cc46539f-6015697f, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-af8d7791 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_1ce4119c-3449-4bad-e874-338698111838-af8d7791 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_1ce4119c-3449-4bad-e874-33869811182b-6edbeba4, #w-node-_1ce4119c-3449-4bad-e874-338698111838-6edbeba4, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-0b6b7253, #w-node-_1ce4119c-3449-4bad-e874-338698111838-0b6b7253 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-f21dad1d-4b12-59f8-bc31-410c8ae5a7d4-815302c0 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr;
}

#w-node-d4aa14bb-d097-d5bf-412d-77886ccfa966-815302c0 {
  grid-template-rows: auto auto;
  grid-template-columns: .5fr 1.75fr .5fr;
}

#w-node-e015184c-2a86-3ee1-3eec-dbd995b4d5c1-815302c0 {
  grid-column: span 3 / span 3;
}

#w-node-_3879867c-dff8-1bbc-b38c-33b733a4c4ed-815302c0 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_14623b80-0f57-0600-a4af-877934016f55-815302c0 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_6ee42cde-67bb-ec5b-9a99-bce569169310-815302c0, #w-node-_6ee42cde-67bb-ec5b-9a99-bce569169319-815302c0 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-b632aac0-2ffc-93d0-0606-21372e504f80-815302c0 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-815302c0 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-d3c6faf0-e1bf-4968-682f-120b7c1c473a-815302c0, #w-node-_328831c6-055a-51c6-a523-1db1cc46539f-815302c0, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-6790da35, #w-node-_1ce4119c-3449-4bad-e874-338698111838-6790da35, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-96bbfae9, #w-node-_1ce4119c-3449-4bad-e874-338698111838-96bbfae9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_883e3c70-94e8-204e-4f76-67d32dcb105b-13648e6b {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-_1ce4119c-3449-4bad-e874-33869811182b-13648e6b, #w-node-_1ce4119c-3449-4bad-e874-338698111838-13648e6b {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_883e3c70-94e8-204e-4f76-67d32dcb105b-3323e308 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

#w-node-_0d30461a-2874-48d5-8e19-4778f89515df-3323e308, #w-node-_0d30461a-2874-48d5-8e19-4778f89515ec-3323e308 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {
  #w-node-f21dad1d-4b12-59f8-bc31-410c8ae5a7d4-6015697f {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }

  #w-node-_436599d1-8723-e380-c191-aa14a4def84e-6015697f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-6015697f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-f21dad1d-4b12-59f8-bc31-410c8ae5a7d4-815302c0 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }

  #w-node-b632aac0-2ffc-93d0-0606-21372e504f80-815302c0 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-815302c0 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_436599d1-8723-e380-c191-aa14a4def84e-6015697f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-6015697f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-d3c6faf0-e1bf-4968-682f-120b7c1c473a-6015697f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_328831c6-055a-51c6-a523-1db1cc46539f-6015697f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-33869811182b-af8d7791 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-338698111838-af8d7791 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-33869811182b-6edbeba4 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-338698111838-6edbeba4 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-33869811182b-0b6b7253 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-338698111838-0b6b7253 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-b632aac0-2ffc-93d0-0606-21372e504f80-815302c0 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-815302c0 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-d3c6faf0-e1bf-4968-682f-120b7c1c473a-815302c0 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_328831c6-055a-51c6-a523-1db1cc46539f-815302c0 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-33869811182b-6790da35 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-338698111838-6790da35 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-33869811182b-96bbfae9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-338698111838-96bbfae9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-33869811182b-13648e6b {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_1ce4119c-3449-4bad-e874-338698111838-13648e6b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0d30461a-2874-48d5-8e19-4778f89515df-3323e308 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_0d30461a-2874-48d5-8e19-4778f89515ec-3323e308 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f21dad1d-4b12-59f8-bc31-410c8ae5a7d4-6015697f, #w-node-_3879867c-dff8-1bbc-b38c-33b733a4c4ed-6015697f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_14623b80-0f57-0600-a4af-877934016f55-6015697f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-6015697f, #w-node-d3c6faf0-e1bf-4968-682f-120b7c1c473a-6015697f, #w-node-_328831c6-055a-51c6-a523-1db1cc46539f-6015697f, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-af8d7791, #w-node-_1ce4119c-3449-4bad-e874-338698111838-af8d7791, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-6edbeba4, #w-node-_1ce4119c-3449-4bad-e874-338698111838-6edbeba4, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-0b6b7253, #w-node-_1ce4119c-3449-4bad-e874-338698111838-0b6b7253, #w-node-f21dad1d-4b12-59f8-bc31-410c8ae5a7d4-815302c0, #w-node-_3879867c-dff8-1bbc-b38c-33b733a4c4ed-815302c0 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_14623b80-0f57-0600-a4af-877934016f55-815302c0 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #About-us.w-node-_0fec599c-5e49-36fc-9981-53e9f71cc443-815302c0, #w-node-d3c6faf0-e1bf-4968-682f-120b7c1c473a-815302c0, #w-node-_328831c6-055a-51c6-a523-1db1cc46539f-815302c0, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-6790da35, #w-node-_1ce4119c-3449-4bad-e874-338698111838-6790da35, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-96bbfae9, #w-node-_1ce4119c-3449-4bad-e874-338698111838-96bbfae9, #w-node-_1ce4119c-3449-4bad-e874-33869811182b-13648e6b, #w-node-_1ce4119c-3449-4bad-e874-338698111838-13648e6b, #w-node-_0d30461a-2874-48d5-8e19-4778f89515df-3323e308, #w-node-_0d30461a-2874-48d5-8e19-4778f89515ec-3323e308 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/font.zip') format('undefined');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Modern Animations and Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations to elements */
.section {
  animation: fadeInUp 0.8s ease-out;
}

.feature-content {
  animation: fadeInUp 0.8s ease-out;
}

.feature-content.icons {
  animation: fadeInUp 0.8s ease-out;
}

.hero-subhead {
  animation: slideInLeft 1s ease-out;
}

.button {
  animation: fadeInUp 1.2s ease-out;
}

/* Modern scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Modern card hover effects */
.link-block-3 {
  transition: all var(--transition-normal);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.link-block-3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

/* Modern image effects */
.feature-icon {
  transition: all var(--transition-normal);
  border-radius: 50% !important;
  overflow: hidden;
  width: 200px !important;
  height: 200px !important;
  object-fit: cover !important;
}

.feature-icon:hover {
  transform: scale(1.1) !important;
  box-shadow: none !important;
}

/* Modern list styling */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-item {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grey-text-jaide);
}

.list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-jaide);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Modern heading styles */
.heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  text-align: center;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading.spec {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

/* Modern navbar enhancements */
.navbar-logo-left-container {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
}

/* Modern footer styling */
#footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: var(--white);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-2xl);
}

.paragraphfooter {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
}

.paragraph-11 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.paragraph-11.linkfoot {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.paragraph-11.linkfoot:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Modern responsive improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Modern selection styling */
::selection {
  background: var(--primary-green);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-green);
  color: var(--white);
}

/* Espacements forcés pour les sections */
#notre-projet-section {
  margin: -6rem 0 0 0 !important;
  padding: 0.5rem 0 !important;
  background: none !important;
  box-shadow: none !important;
  position: relative !important;
  top: 0 !important;
}

#nos-soutiens-section {
  margin: 8rem 0 0 0 !important;
  padding: 0.5rem 0 !important;
  background: none !important;
  box-shadow: none !important;
  position: relative !important;
  top: 0 !important;
}

/* Enhanced Mobile Responsiveness */
@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    padding: 0 var(--space-md);
  }
  
  .heading {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: var(--space-lg);
  }
  
  .feature-icon {
    width: 150px !important;
    height: 150px !important;
  }
  
  #notre-projet-section {
    margin: -4rem 0 0 0 !important;
  }
  
  #nos-soutiens-section {
    margin: 6rem 0 0 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    padding: 0 var(--space-sm);
  }
  
  .w-layout-layout {
    padding: 10px;
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  
  .heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: var(--space-md);
    text-align: center;
  }
  
  .heading.spec {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
  
  .feature-icon {
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto !important;
  }
  
  .navbar-logo-left-container {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .navbar-brand {
    max-width: 150px;
  }
  
  .nav-menu {
    padding: var(--space-md);
  }
  
  .nav-link {
    padding: var(--space-sm) 0;
    font-size: 1.1rem;
  }
  
  .button {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .link-block-3 {
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
  }
  
  .list-item {
    font-size: 0.9rem;
    padding-left: var(--space-md);
  }
  
  #notre-projet-section {
    margin: -2rem 0 0 0 !important;
  }
  
  #nos-soutiens-section {
    margin: 4rem 0 0 0 !important;
  }
}

@media screen and (max-width: 479px) {
  .w-layout-blockcontainer {
    padding: 0 var(--space-xs);
  }
  
  .heading {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
    line-height: 1.3;
  }
  
  .feature-icon {
    width: 100px !important;
    height: 100px !important;
  }
  
  .button {
    padding: var(--space-sm);
    font-size: 0.85rem;
  }
  
  .navbar-brand {
    max-width: 120px;
  }
  
  .link-block-3 {
    padding: var(--space-sm);
  }
  
  .list-item {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  #notre-projet-section {
    margin: -1rem 0 0 0 !important;
  }
  
  #nos-soutiens-section {
    margin: 2rem 0 0 0 !important;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .button,
  .nav-link,
  .link-block-3 {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-icon:hover {
    transform: none !important;
  }
  
  .link-block-3:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }
}

/* COMPREHENSIVE TEXT READABILITY FIXES */
@media screen and (max-width: 991px) {
  /* Improve all text elements */
  h1, h2, h3, h4, h5, h6,
  .heading,
  .heading-2,
  .heading-3,
  .heading-4,
  .heading-5,
  .heading-6,
  .heading-7 {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Paragraph improvements */
  p,
  .paragraph,
  .paragraph-2,
  .paragraph-3,
  .paragraph-11,
  .paragraphfooter {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 1.2rem !important;
    word-wrap: break-word;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  /* Mobile text sizing */
  h1, h2, h3, h4, h5, h6,
  .heading,
  .heading-2,
  .heading-3,
  .heading-4,
  .heading-5,
  .heading-6,
  .heading-7 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1.2rem !important;
    text-align: center;
  }
  
  .heading.spec {
    font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
  }
  
  p,
  .paragraph,
  .paragraph-2,
  .paragraph-3,
  .paragraph-11,
  .paragraphfooter {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
    text-align: left;
  }
  
  /* Button text improvements */
  .button,
  .w-button,
  .button-primary {
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Navigation text */
  .nav-link,
  .w-nav-link {
    font-size: 18px !important;
    font-weight: 500 !important;
  }
  
  /* List text */
  .list-item,
  .w-list-item,
  li {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

@media screen and (max-width: 479px) {
  /* Small mobile text */
  h1, h2, h3, h4, h5, h6,
  .heading,
  .heading-2,
  .heading-3,
  .heading-4,
  .heading-5,
  .heading-6,
  .heading-7 {
    font-size: clamp(1.3rem, 6vw, 1.8rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  p,
  .paragraph,
  .paragraph-2,
  .paragraph-3,
  .paragraph-11,
  .paragraphfooter {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  
  .button,
  .w-button,
  .button-primary {
    font-size: 15px !important;
  }
  
  .nav-link,
  .w-nav-link {
    font-size: 17px !important;
  }
  
  .list-item,
  .w-list-item,
  li {
    font-size: 14px !important;
  }
}

/* Force readable contrast */
@media screen and (max-width: 767px) {
  /* Ensure good contrast */
  body {
    color: #333 !important;
  }
  
  .paragraph,
  p {
    color: #444 !important;
  }
  
  .heading,
  h1, h2, h3, h4, h5, h6 {
    color: #222 !important;
  }
  
  /* Fix any light text that might be hard to read */
  .text-color-white,
  .white-text {
    background: rgba(0,0,0,0.8);
    padding: 0.5rem;
    border-radius: 4px;
  }
}