/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #ffffff;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* Hero */
.hero {
  height: 70vh;
  background: url('/images/hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  color: white;
}

.hero-overlay h1 {
  font-size: 48px;
  margin: 0;
}

.hero-overlay p {
  font-size: 18px;
  margin-top: 10px;
}

/* Sections */
section {
  padding: 80px 48px;
  max-width: 900px;
}

/* Alternate section background */
section:nth-of-type(even) {
  background: #f7f7f7;
}

/* Headings */
h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

/* Lists */
ul {
  padding-left: 20px;
}

/* Footer */
footer {
  padding: 30px 48px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #666;
}
