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

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

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

/* Header */
.site-header {
  background-color: #1a1a2e;
  color: #fff;
  padding: 1rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

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

.site-nav a {
  color: #fff;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background-color: #16213e;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Sections */
.section {
  padding: 3rem 0;
  border-bottom: 1px solid #eee;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background-color: #1a1a2e;
  color: #ccc;
  padding: 1rem 0;
  text-align: center;
}
