<style>
    body {
      background-color: #f8f9fa;
      color: #333;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
    }
    header {
      background-color: #ff6f00;
      color: white;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .logo-container img {
      height: 135px;
      width: auto;
    }
    .logo-container h1 {
      margin: 0;
      font-size: 2rem;
    }
        }
    .logo-container h2 {
      margin: 0;
      font-size: 1rem;
    }
    nav {
      background-color: #333;
      text-align: center;
    }
    nav a {
      color: white;
      text-decoration: none;
      padding: 1rem;
      display: inline-block;
    }
    nav a:hover {
      background-color: #ff6f00;
    }
    .hero {
      background: url('your-hero-image.jpg') center/cover no-repeat;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 1px 1px 4px #000;
      font-size: 2rem;
    }
    .facility-image {
      text-align: center;
      padding: 2rem;
    }
    .facility-image img {
      max-width: 90%;
      height: 30%;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      float: left;
      
    }
    .units {
      display: flex;
      clear: both;
      flex-wrap: wrap;
      justify-content: center;
      padding: 2rem;
      gap: 2rem;
    }
    .unit {
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1.5rem;
      width: 300px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .unit h2 {
      color: #ff6f00;
      margin-top: 0;
    }
    .unit p {
      font-size: 1.1rem;
    }
    .contact {
      background-color: #eee;
      padding: 2rem;
      text-align: center;
    }
    .contact h2 {
      margin-bottom: 1rem;
    }
    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
    }
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .logo-container {
        flex-direction: column;
      }
      .units {
        flex-direction: column;
        align-items: center;
      }
    }
    
    ul.a {
      list-style-position: outside;
      padding-left: 25%;
      
      font-weight:700;
      font-size:100%;
      text-align: left;
      text-shadow: 1px 1px 4px #e07f0f;
}
</style>