body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #222;
}

.nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #333;
  color: white;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  color: white;
  text-decoration: none;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  text-align: center;
  padding: 40px 20px;         /* adds breathing room */
  background: #111;           /* makes white logo/text pop */
}

/* Make the logo fit nicely without cropping */
.hero img {
  width: min(500px, 80%);     /* max 800px, shrink on mobile */
  height: auto;               /* keep proportions */
  object-fit: contain;        /* no cropping */
  display: block;
  margin: 0 auto;             /* center */
}

/* Put text UNDER the logo instead of absolute overlay */
.hero-text {
  position: static;           /* stop absolute positioning */
  transform: none;
  margin-top: 20px;
  color: white;
  text-shadow: 0 0 10px black;
}

.btn {
  background: #e63946;
  padding: 0.7rem 1.2rem;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: 0.5rem 0;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}