/* new icon */


    .container-hero {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    }

    .left-column {
      width: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .left-column img {
      width: 130px;
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 0.1rem;
    }

    .icons {
      display: flex;
      justify-content: space-between;
      width: 70%;
      gap: 1rem;
    }

    .icons a {
      text-decoration: none;
      color: #333;
      font-size: 1.5rem;
    }

    .icons-single {
      text-decoration: none;
      color: #333;
      font-size: 1.5rem;
    }

    .right-column {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .right-column > div {
      /* background: white;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    }




.responsive-image {
   /* Default for XS and small devices */
  width: 100%;
}

/* Medium screens (≥1024px) */
@media (min-width: 500px) {
  .responsive-image {
    width: 200px;
  }
}

/* Medium screens (≥1024px) */
@media (max-width: 500px) {
  .hide-xs {
   display: none;
  }
}