/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  padding: 20px;
}

a {
  color: #6ec1e4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header / Hero */
.header {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: #bbbbbb;
}

/* Sections */
.section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

p {
  margin-bottom: 10px;
}

/* Capabilities List */
.capabilities {
  list-style-type: square;
  padding-left: 20px;
}

.capabilities li {
  margin-bottom: 8px;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 60px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}
.nav {
  background-color: #111;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.nav a:hover {
  text-decoration: underline;
}
.separator {
  color: #555;
  font-weight: 300;
  margin: 0 10px;
}

