
.container {
    max-width: 100%;
    margin: 0 auto;

  }
  .hero {
    position: relative;
    
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.7);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
  }
 
  .fees-card h2 {
    font-size: 2rem;
    color: #2e7d32;
   
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  .fees-card h4{
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
  }
  .fees-links h4{
    color: #2e7d32;
    font-weight: bold;
  }
  .fees-links a:hover{
    color:#2e7d32 ;
  }
  .fees-links{
    display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
  }
 .fees-links a{
  text-decoration: none;
  text-align: center;
  padding: 0 10px;
 }
  @media (max-width: 768px) {
    .fees-card {
    clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0 100%);
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 1.2rem;
    }
    .fees-card h2 {
      font-size: 1.5rem;
     
    }
    .fees-card h2 {
      font-size: 1.5rem;
     
    }
  
  }
