*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  background: #1a1a1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
}

.logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 auto 2.5rem;
  display: block;
}

.services {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.description {
  font-size: 1.1rem;
  color: #444;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.description a {
  color: #b52525;
  text-decoration: none;
  font-weight: 600;
}

.description a:hover {
  text-decoration: underline;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  font-style: normal;
  font-size: 1rem;
  color: #555;
  margin: 1.5rem auto 0;
}

.contact a {
  color: #333;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #1a1a1a;
  color: #999;
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
  font-size: 0.85rem;
  line-height: 2;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .services {
    font-size: 1.1rem;
  }

  .description {
    font-size: 1rem;
    text-align: center;
  }
}
