.hero {
  background: linear-gradient(to right, rgb(212, 208, 199) 0%, rgb(202, 198, 189) 100%);
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-pic {
    width: 225px;
    height: 225px;
    object-fit: cover;
    border-radius: 55%;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  
  .description {
    color: #000000;
  }
  
  .description h2 {
    font-size: 32px;
    margin: 10px 0;
  }
  
  .description p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }