/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

a {
  color: #005aa7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5em;
}

/* Header */
header {
  background: #333;
  color: #fff;
  padding: 1em 0;
}

header h1 {
  margin-bottom: 0.5em;
  font-size: 1.8em;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: none;
}

nav a {
  color: #fff;
  font-weight: bold;
}

/* Hero */
.hero {
  background: #dceefc;
  text-align: center;
  padding: 3em 1em;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* Sections */
section {
  padding: 2em 0;
}

h2 {
  margin-bottom: 1em;
  color: #222;
}

/* Services List */
.services-list {
  list-style: none;
  padding-left: 0;
}

.services-list li {
  padding: 0.5em 0;
  font-size: 1.1em;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1.5em 0;
  margin-top: 3em;
}

/* Responsive nav */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 1em;
}

.logo {
  height: 60px; /* adjust as needed */
  width: auto;
}
.logo-header {
  text-align: center;
  padding: 2em 0;
  background-color: #333;
}

.logo-centered {
  height: 120px;
  width: auto;
  display: inline-block;
}
