
body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
  }
  

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #9c6363;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  header .logo a {
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
  }
  
  header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  header nav ul li {
    margin: 0 1rem;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  header nav ul li a:hover{
    color: rgb(0, 250, 54);
  }
  

  .testimonials {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
  }
  
  .testimonials h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .testimonials .subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    justify-items: center;
    margin-bottom: 3rem;
  }
  
  blockquote {
    font-style: italic;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-left: 5px solid #9c6363;
    font-size: 1.2rem;
    color: #555;
    width: 100%;
    max-width: 400px;
  }
  
  blockquote p {
    margin-bottom: 0;
  }
  
  .customer-images {
    margin-top: 3rem;
  }
  
  .customer-images h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .images-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .customer-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .customer-img:hover {
    transform: scale(1.1);
  }

  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  footer p {
    margin: 0;
  }
  
  footer a.footer-link {
    color: #ff7f50;
    text-decoration: none;
  }
  
  footer a.footer-link:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
    }
  
    header nav ul {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 1rem;
    }
  
    header nav ul li {
      margin: 0.5rem 0;
    }
  
    .testimonials-grid {
      grid-template-columns: 1fr;
      margin-bottom: 2rem;
    }
  
    .images-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .customer-img {
      width: 100px;
      height: 100px;
      margin-bottom: 1rem;
    }
  }
  