
@media screen and (min-width: 800px) {

    .financing {
        width: 100%;
        height: 70%;
        margin: 0px 30px 0px 0px;
        text-align: center;  
    }
    
    .financing h2 {
        font-size: 40px;
        color: #005A9C;
    }
    .financing-links {
        
    }
    .financing-links img {
        width: 30%;
        margin: 50px 50px 0px 0px;
        justify-content: center;  /* Center the items horizontally */
        align-items: center; 
    }
    .financing-links a:nth-child(2) img {
        width: 40%;
        margin-bottom: 150px;
    }
    .financing-links a {
        text-decoration: none;  /* Remove default link underlining */
        padding: 40px;
    }
}

@media screen and (max-width: 799px) {
    .financing {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 80%;
      height: 60%;
      margin: auto;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .financing h2 {
      font-size: 28px;
      color: #005A9C;
      margin-bottom: 20px;
    }
  
    .financing-links {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 20px; 
    }
  
    .financing-links img {
      width: 50%; 
    }
    .financing-links a:nth-child(2) img {
        width: 80%;
    }
  
    .financing-links a {
      text-decoration: none;
      padding: 0;
    }
  }
