/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Header Styles */
  header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  
  nav li {
    margin-left: 20px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
  }
  
  nav a:hover {
    color: #ccc;
  }
  
  /* Hero Styles */
  .hero {
    background-image: url("hero-image.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  /* Features Styles */
  .features {
    background-color: #f7f7f7;
    padding: 40px 0;
  }
  
  .features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  
  .features li {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 25%;
    text-align: center;
  }
  
  /* Testimonials Styles */
  .testimonials {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
  }
  
  .testimonials p:first-child {
    font-style: italic;
  }
  
  /* CTA Styles */
  .cta {
    background-color: #f7f7f7;
    padding: 40px 0;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .cta button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
  }
  
  .cta button:hover {
    background-color: #555;
  }
  
  /* Footer Styles */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }