/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Lato', sans-serif;
  background: #fff;
}

/* Logo Banner Section */
.logo-banner {
  background: #fff url('jarvis-black.png') no-repeat center top;
  background-size: contain;
  height: 200px;
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: #000;
  color: #fff;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.5rem;
  color: #ccc;
}

a {
  color: #ccc;
  font-weight: bold;
}

/* Footer */
footer {
  border-top: 2px solid #333;
  background-color: #111;
  color: #eee;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: #eee;
  text-decoration: none;
  font-size: 0.9rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.social-icons a {
  color: #eee;
  font-size: 1.2rem;
  text-decoration: none;
}
.footer-bottom {
  font-size: 0.8rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
.hero-content {
  max-width: 800px;
  margin-top: -100px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
  font-family: 'Lato', sans-serif;
  color: #f4f4f4;
  line-height: 1.6;
}
.legal-content h1,
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
}
.legal-content ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}