
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}
header {
  text-align: center;
  background-color: #000;
}
.hero-banner {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
}
main {
  padding: 60px 20px;
}
section {
  max-width: 1000px;
  margin: auto;
  padding: 20px 0;
}
section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
section p, section ul {
  font-size: 1.2rem;
  line-height: 1.6;
}
.get-started {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.get-started .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}
.get-started .btn:hover {
  background: #555;
}
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #888;
}
.social-links {
  text-align: center;
  margin: 40px 0;
}
.social-links a {
  margin: 0 10px;
  color: #0e0e2c;
  font-weight: bold;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}
