   
.profile-image-container {
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    width: 100%;
    height: 100%;
  }
  
   .subtitle{
      font-size: 1.6em;
      margin-top: 0;
      line-height: 1.5em;
      margin-bottom: 1.7em;
      font-weight: 700;
   }
  
   h4
  {
      background-color: var(--dark-color);
       width: 100%;
  }
  
  .profile-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .profile-image-container:hover .profile-image {
    transform: scale(1.1);
  }