 * {
      box-sizing: border-box;
    }
    body {
      font-family: Montserrat;
      margin: 0;
      background-color: #f2f2f2;
 
    }
    .container {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      /*background-color: #fff;*/
      max-width: 1100px;
      margin: 20px auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      margin-top: 110px;
      background:white;
       
    }
    .left {
      width: 40%;
      /**/background: linear-gradient(to right, #bbdefb, #fff9c4, #ffcdd2);
      display: flex;
      flex-direction: column;
      align-items: center;
      /*justify-content: space-between; */
      padding: 20px;
      height:720px;
    
    }
    .left img {
      width: 200px;
      height: 200px;
      border-radius: 10px;
    }

    .name-social {
      text-align: center;
      margin-top: 15px;
    
    }

    .name-social h2 {
      margin: 10px 0;
      font-size: 22px;
      color: #333;
    }

    .social-icons a {
      margin: 0 10px;
      text-decoration: none;
      font-size: 24px;
      color: #555;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #0288d1;
    }

    .right {
      width: 60%;
      padding: 30px;
      font-size: 16px;
      line-height: 1.6;
      color: #333;
      text-align: justify;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .left, .right {
        width: 100%;
        padding: 20px;
      }

      .right {
        padding-top: 0;
      }
    }

.titre1 {
  display: block; /* transforme <b> en bloc comme <h3> */
  font-family: 'Montserrat', sans-serif;
  font-size: 2vw; /* taille responsive */
  font-weight: 600; /* semi-bold */
  color:rgb(2, 2, 2); /* rouge vif */
  border-left: 8px solid #0080d8;
  padding-left: 12px;
  margin: 20px 0;
  background: linear-gradient(to right, rgba(213, 0, 0, 0.05), white);
  border-radius: 0 5px 5px 0;
  line-height: 1.4;
  word-wrap: break-word;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05); /* effet d'ombre légère */
}

@media screen and (max-width: 400px) {
  .titre1 {
    font-size: 6vw;
    border-left-width: 6px;
    padding-left: 10px;
  }
}

ul {
  line-height: 1.4; /* Réduit l'espacement vertical */
  margin-left: 20px; /* Légère indentation (facultatif) */
  padding-left: 10px;
  font-family: Arial, sans-serif; /* Ou ta police personnalisée */
  font-size: 16px; /* Taille de police lisible */
}
.titre-coordonnees {
      background-color: #0080d8; /* fond bleu */
      padding: 5px;
      color: #79cfff; /* bleu clair */
      font-size: 20px;
      font-weight: bold;
      position: relative;
      width: fit-content;
    }

    .titre-coordonnees::after {
      content: "";
      position: absolute;
      bottom: px;
      left: 0;
      width: 50px;
      height: 8px;
      background-color: yellow;
    }
    .attributions {
    font-family: 'Roboto Slab', serif;
     font-size: 30px;
     color: red;
  }

 .card-contact {
  /*background: linear-gradient(135deg, #e0f3ff, #ffe0e0);*/
  border-left: 3px solid #ff0000;
  border-radius: 1px;
  padding: 20px 25px;
  max-width: 520px;
  margin: 2px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
  color: #222;
}

.card-contact h2 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

.card-contact h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #007bff;
  margin-top: 4px;
  border-radius: 2px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
  
.contact-row i {
  color: #007bff;
  font-size: 18px;
  margin-right: 10px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-label {
  font-weight: bold;
  min-width: 80px;
}
.contact-value {
  flex: 1;
}

.contact-value a {
  color: #007bff; 
  text-decoration: none;
  word-break: break-word;
}

.contact-value a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 480px) {
  .card-contact {
    padding: 15px;
    font-size: 14px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-row i {
    margin-bottom: 5px;
  }

  .contact-value {
    width: 100%;
  }
}