.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.2s ease-out; /* Animation pour la section */
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .text-content {
    max-width: 600px;
    text-align: center;
    animation: slideInLeft 1.5s ease-out;
  }

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

  .text-content h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #222222;
    margin-bottom: 20px;
  }

  .text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .button.black {
    background-color: #333333;
  }

  .button:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* Zoom sur le survol */
  }

  .button.black:hover {
    background-color: #111111;
    transform: scale(1.05);
  }

  .image-container {
    animation: slideInRight 1.5s ease-out;
  }

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

  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 400px;
  }