/* styles.css */

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

.hero {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #e5e5e5;
}

.about {
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  color: #333;
}

footer {
  background: #000;
  color: #aaa;
  padding: 40px 20px;
  text-align: center;
}

.footer-links a {
  margin: 0 10px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}