body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f8f8f8;
    color: #333;
  }
  
  .container {
    max-width: 960px;
    margin: auto;
    padding: 1.5em;
  }
  
  header {
    background: #003dc2;
    color: white;

  }
  .header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5em;
  }
  .logo {
    height: 200px;
    display: block;
    margin-right: 1em;
  }
  
  h1 {
    margin: 0;
    font-size: 1.8em;
    display: flex;
    justify-content: flex-start;
    align-items: center;

  }
  
  main {
    margin-top: 2em;
  }
  
  .info {
    margin-bottom: 2em;
  }
  
  .services ul {
    list-style-type: none;
    padding: 0;
  }
  
  .services li {
    margin: 0.8em 0;
  }
  
  .services a {
    color: #0066cc;
    text-decoration: none;
  }
  
  .services a:hover {
    text-decoration: underline;
  }
  
  footer {
    background: #eee;
    text-align: center;
    padding: 1em;
    margin-top: 3em;
    font-size: 0.9em;
    color: #777;
  }
  