body {
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
  }
  
  header.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  header.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  section h2 {
    color: #0ff;
    margin-bottom: 20px;
  }
  
  section img {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  .gallery {
    display: flex;
    gap: 15px;
  }
  
  .gallery img {
    width: 32%;
    border-radius: 10px;
  }
  
  .testimonial {
    background: #fff;
    color: black;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #004080;
  }
  
  .testimonial span {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #555;
  }
  
  .cta {
    text-align: center;
    background: #004080;
    color: white;
    padding: 50px 20px;
  }
  
  .cta button {
    background: #ffcc00;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .cta button:hover {
    background: #e6b800;
  }
  
  footer {
    text-align: center;
    background: #222;
    color: white;
    padding: 20px;
  }
  