 main {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }

    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #2563eb;
      color: white;
      padding: 12px 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      margin-bottom: 20px;
      margin-top: 50px;
      transition: transform 0.15s ease, background-color 0.15s ease;
    }

    .download-btn:hover {
      background-color: #1e40af;
      transform: scale(1.03);
    }

    .cv-container {
      width: 100%;
      max-width: 600px;
      background: #212121;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      overflow: hidden;
    }

    img {
      width: 100%;
      height: auto ;
      border-radius: 10px;
    }

    /* Responsive : réduit la hauteur sur mobile */
    @media (max-width: 768px) {
      img {
        height: 70vh;
      }
    }

    @media (max-width: 480px) {
      img {
        height: 60vh;
      }
    }