.hero {
    background-color: #ad5353;
    padding: 20px;
    text-align: center;
  }
  
  .hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .testimonials {
    background-color: #c07878;
    padding: 20px;
  }
  
  .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial {
    margin: 20px;
    padding: 20px;
    border: 1px solid #a21616;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(168, 16, 16, 0.1);
  }
  
  .testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 10px;
  }
  
  .news {
    background-color: #ba2020;
    padding: 20px;
  }
  
  .news ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .news li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #a3ef0b;
  }
  
  .news h3 {
    font-weight: bold;
    margin-top: 0;
  }