/* RESET / BASE STYLES (optional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  background-color: #121212;
  color: #fff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER & NAV */
.header {
  background-color: #1e1e1e;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #fff;
}

/* Highlight active page link (optional styling) */
.nav-menu .active {
  color: #fff;
  font-weight: 600;
}

/* SERVICES SECTION */
.services-section {
  padding: 3rem 0;
  text-align: center;
}

.services-section h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.intro-text {
  max-width: 800px;
  margin: 0.75rem auto 2rem;
  color: #ccc;
  line-height: 1.4;
}

/* Individual Services */
.service-block {
  text-align: left;
  margin-bottom: 2rem;
}

.service-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-block p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  background-color: #1e1e1e;
  padding: 2rem 0;
  text-align: center;
}

.footer-content p {
  color: #777;
  margin-bottom: 0.5rem;
}

.small-text {
  font-size: 0.9rem;
  color: #aaa;
}
