.term {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  header h1 {
    font-size: 2.5em;
    color: #333;
  }
  
  /* Content Styling */
  .content {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }
  
  .content h2 {
    font-size: 1.8em;
    margin-top: 20px;
    color: #3d5300;
  }
  
  .content p {
    margin-bottom: 15px;
  }
  
  .content a {
    color: #3d5300;
    text-decoration: none;
  }
  
  .content a:hover {
    text-decoration: underline;
  }
  .bread{
    background-image: url(../img/faq/Untitled\ design.webp);
    height: 350px;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}
.bread>h1{
  font-size: 75px;
  text-align: center;
  color: white;
 padding-top: 75px;
}
.Home{
    padding-top: 75px;
    font-size: 21px;
    color: white;
   padding-top: 75px;
    margin-left: 40%;
}
@media (max-width:650px){
    .bread{
        height: 290px;
    }
.bread>h1{
    font-size: 35px;
    padding-top: 110px;
}
.Home{
    margin-left: 15%;
}
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .term {
      padding: 15px;
      margin: 20px;
    }
  
    header h1 {
      font-size: 2em;
    }
  
    .content h2 {
      font-size: 1.5em;
    }
  
    .content p {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    header h1 {
      font-size: 1.8em;
    }
  
    .content h2 {
      font-size: 1.4em;
    }
  
    .content p {
      font-size: 13px;
    }
  
    .term {
      padding: 10px;
      margin: 15px;
    }
  }