/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  h1, h2, h3 {
    color: #333;
    text-align: center;
  }
  
  /* Navigation Styles */
  header {
    background-color: #921C3D;
    padding: 10px 0;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo h1 {
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #921C3D;
  }
  
  .hero {
    background-size: contain; /* Adjusts the size of the image to be fully visible */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Ensures the background doesn't repeat */
    display: flex;
    align-items: center;
    justify-content: center;
}

  .hero-content {
    text-align: center;
    color: #fff;
    max-width: 600px;
  }
  
  .hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: black;
  }
  
  .cta-button {
    padding: 10px 20px;
    background-color: #921C3D;
    border: none;
    border-radius: 30px;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ffb800;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .testimonials h3 {
    margin-bottom: 30px;
    font-size: 28px;
  }
  
  .testimonial-cards {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
  }
  
  .card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .card h4 {
    color: #333;
    font-size: 18px;
    margin: 0;
  }
  
  /* Footer Styles */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
  }
  
  footer p {
    margin: 0;
  }
  