/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  
  
  /* Main Section */
  main {
    background-color: white;
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  main h1 {
    color: #0077b6;
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
  }
  
  main p {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .testimonial {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f4f9fd;
  }
  
  .testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #0077b6;
  }
  
  .testimonial-content {
    flex: 1;
  }
  
  .testimonial-content h2 {
    color: #005f87;
    margin: 0 0 5px 0;
  }
  
  .testimonial-content p {
    margin: 5px 0;
    line-height: 1.6;
  }
  
  .testimonial-content p strong {
    color: #0077b6;
  }
  
  
  