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

/* Body styling */
body {
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full viewport height */
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
}

/* Sections */
section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

section h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #bbb;
  background-color: #111;
}
