/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #1a1f36;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: #fff;
  margin-right: 1rem;
  text-decoration: none;
}

.hero {
  background: #f4f5f7;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 6rem;      /* reduced from 7rem */
  margin-bottom: 0.5rem;
  color: #4D0000;
}

.hero p {
  font-size: 1.2rem;
  color: #1a1f36;
}

.hero .hero-subtitle {
  font-size: 1.3rem;
}

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

.section h2 {
  margin-bottom: 1rem;
  color: #4D0000;
}

/* Style the service list */
#services ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

#services li {
  margin-bottom: 0.5rem;
  font-weight: 700;     /* makes items bold */
  color: #1a1f36;       /* navy */
}

footer {
  background: #1a1f36;
  color: #aaa;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

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