.textToggle {
    max-height: 600px;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    position: relative;
    background-image: url('path-to-your-image.jpg'); 
    background-size: cover; 
    background-position: center; 
      z-index:1;
  }
  
  
  
  
  .textToggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(358deg, rgba(255,255,255, 1) 0%, rgba(255,255,255, 0.47) 50%, rgba(255,255,255, 0) 100%);
    z-index: 10; 
  }
  
  
  
  
  .textToggle p {
    position: relative; 
    z-index: 2; 
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    font-weight: inherit;
    line-height: 1.6;
  }
  
  
  
  
  .textToggle.active::before {
    opacity: 0; 
  }
  
  
  
  
  .textToggle.active {
    max-height: 2000px;
  }
  
  
  
  
  .buttonToggle {
    background-color: #54595F;
    color: white;
    padding: 10px 20px;
    border: none;
  
  
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .buttonContainer{
  margin-top:10px;}
  
  
  
  
  
  
  .buttonToggle:focus {
    outline: none;
  }
  
  
  
  
  .buttonToggle a {
    text-decoration: none;
    color: white;
  }
  
  
  
  
  .buttonToggle a:hover {
    text-decoration: none;
    color: white;
  }
  