#goals_section{
    padding: 150px 0;
    background-color: var(--secondary-color);
  
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
  
    flex-wrap: wrap-reverse;
  }
  .goals_container{
    width: 750px;
    max-width: 90%;
  }
  #goals_section img{
    width: 400px;
    max-width: calc(90% - 30px);
    border: 15px solid var(--text-color);
  }
  .goals_container h2{
    font-size: 40px;
  }
  .goals_container p{
    text-align: justify;
    line-height: 175%;
  }
  
  #item5 a {
    text-decoration: none;  
    color: white;
  }
  
  @media(max-width: 800px){
    #goals_section{
        padding: 50px 0;
    }
    .goals_container h2{
        text-align: center;
        font-size: 12vw;
    }
  }