   /* Image de profil */
    .profile-img {
      max-width: 220px;
      border-radius: 50%;
      border: 4px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .profile-img:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    /* Titres */
    h2 {
      color: #2c3e50;
      position: relative;
      padding-bottom: 10px;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #2c3e50, #3498db);
      border-radius: 2px;
    }

    /* Paragraphes */
    p {
      line-height: 1.7;
      margin-bottom: 1.5rem;
      color: #444;
    }

    /* Section */
    section {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 15px;
      padding: 2.5rem;
      margin: 2rem auto;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }