.certificazioni {
    text-align: center;
    padding: 80px 20px;
    font-family: "Inter", sans-serif;
    color: #000;
    margin-bottom: clamp(90px, 10vw, 200px);
  }
  
  .certificazioni h2 {
    color: #0c84a5;
    font-size: 2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  
  .linea-titolo {
    width: 120px;
    height: 3px;
    background: #0c84a5;
    margin: 0 auto 40px;
  }
  
  .certificazioni .descrizione {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
  }
  
  /* Contenitore dei link */
  .certificazioni-container {
    display: flex;
    justify-content: space-around;    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
  }
  
  /* Singolo link */
  .cert-link {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .cert-link span:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  /* Linea sotto il testo */
  .cert-link .line {
    display: block;
    width: 200px;
    height: 2px;
    background: #000;
    position: relative;
    transition: all 0.3s ease;
  }
  
  /* Freccia CSS */
  .cert-link .arrow {
    position: absolute;
    bottom: -2px;
    right: -20px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
    transform: rotate(45deg);
    transition: all 0.3s ease;
  }
  
  /* Effetto hover */
  .cert-link:hover .line {
    width: 90px;
    background: #0c84a5;
  }
  
  .cert-link:hover .arrow {
    right: -30px;
    border-color: #0c84a5;
  }
  
  /* Responsività */
  @media (max-width: 500px) {
    .certificazioni h2 {
      font-size: 1.6rem;
    }
  
    .linea-titolo {
      width: 90px;
    }
  
    .certificazioni-container {
      flex-direction: column;
      gap: 40px;
    }
  
    .cert-link {
      align-items: center;
    }
  
    .cert-link .line {
      width: 80px;
    }
  
    .cert-link:hover .line {
      width: 70px;
    }
  
    .cert-link .arrow {
      bottom: -2px;
      right: -15px;
    }
  }
  