@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 10px;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

.top-banner {
  background: #eeeeee;
  text-align: center;
  font-size: 1.5em;
  padding: 8px 0;
  color: #555;
}

main {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.logo {
  max-width: 500px;
  margin: auto auto 0 auto;
  display: block;
}

h1 {
  font-size: 1.4em;
  color: #0065A2;
  margin-bottom: 20px;
}

.services h2 {
  font-size: 1.3em;
  margin-top: 40px;
  color: #228B22;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  margin: 25px 0;
  text-align: justify;
  font-size: 1em;
  line-height: 1.5;
}

.services li strong {
  color: #0065A2;
}

.contact-button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background: #004f80;
  color: white;
  text-decoration: none;
  font-size: 1em;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background: #0065A2;
}

@media screen and (max-width: 600px) {
  .logo {
    max-width: 300px;
  }
  .services li {
    font-size: 0.95em;
  }
  h1 {
    font-size: 1.3em;
  }
}
