/* Couleurs principales */
    :root {
      --primary-color: #007BFF;
      --secondary-color: #00C9A7;
      --bg-color: #1E1E2F;
      --text-color: #fff;
      --accent-color: #FF4081;
    }

    /* Style de base */
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: var(--text-color);
      overflow-x: hidden;
      text-align: center; /* Texte centré */
    }

    header {
      text-align: center;
      padding: 3rem 0;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    header .profile-pic img {
      width: 170px;
      height: 170px;
      border-radius: 50%;
      border: 4px solid var(--text-color);
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
      animation: float 4s ease-in-out infinite;
    }

    header h1 {
      margin: 1rem 0 0.5rem;
      font-size: 2.5rem;
      animation: fadeIn 2s ease-in-out;
    }

    header p {
      font-size: 1.2rem;
      opacity: 0.9;
      animation: fadeIn 2.5s ease-in-out;
    }

    .social-icons {
      margin-top: 1.5rem;
    }

    .social-icons a {
      margin: 0 10px;
      font-size: 1.5rem;
      color: var(--text-color);
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.2);
      color: var(--accent-color);
    }

    /* Sections */
    .section {
      padding: 2rem 0;
      text-align: center; /* Texte centré */
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
      animation: slideIn 1s ease-in-out;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: var(--accent-color);
      margin: 0.5rem auto 0;
    }

    .section-description {
      font-size: 1.2rem;
      line-height: 1.8;
    }

    /* Style pour les projets avec des cadres colorés */
    .projects-grid .project {
      border: 2px solid var(--accent-color);
      padding: 1rem;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .projects-grid .project:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* Style des barres de progression */
    .progress-bar {
      position: relative;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      height: 20px;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .progress {
      background-color: var(--accent-color);
      height: 100%;
      border-radius: 8px;
      transition: width 1s ease;
    }

    .progress-value {
      position: absolute;
      right: 10px;
      top: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      font-size: 0.9rem;
      color: var(--text-color);
    }

    /* Style pour le footer avec un cadre coloré */
    footer {
      border-top: 4px solid var(--accent-color);
      padding: 1rem;
      background-color: var(--bg-color);
      text-align: center;
    }

    /* Animations */
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes slideIn {
      from {
        transform: translateX(-100px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }