#about-programs {
    padding-top: 50px;
  }
  #about-jeff {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  #about-jeff-imgs {
    grid-column: 1;
    padding: 20px;
    padding-top: 0;
  }
  
  #about-jeff-content-outter {
    grid-column: 2;
    display: flex;
    justify-content: center;
  }
  #about-jeff-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the content vertically within the div */
    align-items: flex-start; /* Aligns content to the left */
    padding: 20px;
    color: #fff;
    width: 85%; /* Ensures the div takes full width of the column */
    box-sizing: border-box; /* Includes padding in the width calculation */
  }
  
  #about-jeff-content h3 {
    font-size: 3.5em;
    margin: 0;
    line-height: 0.8em;
    margin-bottom: 20px;
  }
  #text-above-about-jeff {
    opacity: 0.5;
  }
  
  #text-below-about-jeff {
    text-align: left;
    opacity: 0.9;
    width: 80%;
    margin-bottom: 20px;
  }
  #exp-num {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  #exp-about {
    text-align: left;
    font-size: 1.4em;
    font-weight: 900;
  }
  
  #num-about {
    font-size: 4.5em;
    font-weight: 900;
  }
  
  #link-about a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  #link-about-text {
    text-align: end;
  }
  #link-about i {
    color: #ff5a00;
  }
  
  #about-jeff-imgs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-right: 1px solid rgb(133, 133, 133);
  }
  
  #about-jeff-imgs img:last-child {
    margin-top: 80px; /* Adjust this value as needed to position the first image higher */
  }
  
  #about-jeff-imgs img {
    width: 250px;
    border-radius: 5px;
  }
  .mobile-about-img {
    display: none;
  }
  
  @media (max-width: 1000px) {
    #about-programs{
        display: flex;
        justify-content: center;
    }
    #about-jeff {
      grid-template-columns: 1fr;
      width: 80%;
    }
    #exp-num {
      display: none;
    }
    #about-jeff-imgs {
      display: none;
    }
  
    .mobile-about-img {
      display: block;
      width: 100%;
      border-radius: 5px;
    }
    
    .mobile-img-container {
      position: relative;
      width: 100%;
      text-align: center;
    }
    
    .mobile-img-container::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      border-radius: 0px 0px 5px 5px;
    }
    
    #text-below-about-jeff {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      color: #fff;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 0;
      z-index: 1;
    }
    
    #link-about {
      margin-top: 20px; /* Add space above the link */
    }
  }
  
  @media (max-width: 768px) {
    #about-jeff {
        width: 100%;
      }

      #about-jeff-content h3{
        font-size: 40px;
      }
  }