body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
  }
  .navbar {
    display: flex;
    background-color: #333;
    color: white;
    justify-content: space-between;
    padding: 1rem;
  }
  .navbar a {
    color: white;
    padding: 0 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .navbar a:hover {
    background-color: #555;
  }
  .service-section {
    text-align: center;
    padding: 2rem;
  }
  .service-header {
    color: #333;
    margin-bottom: 1rem;
  }
  .service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .service {
    margin: 1rem;
    padding: 1rem;
    width: 300px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  .service img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  h3 {
    color: #333;
  }
  .contact {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
  }
  .contact a {
    color: #4da6ff;
    text-decoration: none;
  }
  .contact a:hover {
    text-decoration: underline;
  }  