/************Experts**************/

.content-position {
    display: flex;
    flex-flow: row wrap;
   gap: 10px;
    align-items: center;
  justify-content: center;
  }
 
  .img-div-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
 
  @media screen and (min-width: 800px) {
    .img-div-screen {
      display: none;
    }
  }
 
  @media screen and (max-width: 800px) {
    .img-div {
      display: none;
    }
  }

/************cards contribution**************/

 
 .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
        max-width: 1200px;
        margin: auto;
    }

    .card {
        padding: 28px 32px;
        border-radius: 20px;
        background: white;
        line-height: 1.55;
    }

    /* --- COLORS (matching screenshot) --- */
    .green   { background: #D7E9E7;}
    .green2   { background: #E4E7B1;}
    .blue    { background: #CFECEF; }
    .purple  { background: #F0E7FF; }
    .beige   { background: #EEDECE; }

    h3 {
        font-family: plus jakarta sans;
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: -0.395px;
    }

    .icon {
        font-size: 26px;
        margin-bottom: 8px;
        display: inline-block;
    }

    /* For the transparent business model block */
    .outlined {
        border: 2px solid #2e322f;
        background: transparent;
    }

    /* Responsive typography */
    @media (max-width: 600px) {
        h3 { font-size: 20px; }
        .card { padding: 22px; }
    }




/**********************contact page**********************/


:root {
  --bg-color: #f7f7f7;
  --border-color: #000000;
  --icon-bg: #e2eeed;
  --text-main: #000000;
  --text-muted: #a0a0a0;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


body {
  background-color: var(--bg-color);
  font-family: var(--font-family);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.card-contact_container {
  width: 100%;
  max-width: 600px;
  padding: 40px;
}

.frame-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-left: 20px;
}

.card-contact {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 30px;
  background-color: transparent;
}

/* This creates the "gap" in the border by placing a background-colored box behind the title */
.card-header {
  position: absolute;
  top: 0;
  left: 30px;
  transform: translateY(-50%);
  background-color: var(--bg-color); /* Matches the page background */
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background-color: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 20px;
  height: 20px;
  color: #2d4a47;
}

/* Inner border effect for the icon */
.icon-wrapper {
  padding: 4px;
  border: 1px solid #d0e5e3;
  border-radius: 50%;
  display: flex;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

.card-body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
  font-weight: 500;
}

/**************************/

.trajectoire-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
  }
  .trajectoire-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Ajout léger pour la profondeur */
    font-size: 18px;
    min-width: 250px;
  }
  .trajectoire-item img {
    margin-right: 15px;
  }
  @media (max-width: 768px) {
    .trajectoire-item {
      width: 100%;
    }