/* General Reset */
body, h1, h2, h3, p, ul, img {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: #0d0d0d;
  color: #dddddd;
  line-height: 1.6;
}

/* Header */
.header {
  text-align: center;
  padding: 2rem;
  background: #0f0f0f;
}

.logo img {
  max-width: 400px;
  height: auto;
  /*filter: brightness(0) invert(0); !* Ensures your logo stands out on a dark background *!*/
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to right, #1a1a1a, #0f0f0f);
  color: #ffffff;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* Information Section */
.information {
  padding: 4rem 2rem;
  text-align: center;
  background: #161616;
}

.information h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}

.information p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #cccccc;
}

/* Features Section */
.features {
  background: #101010;
  padding: 3rem 2rem;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.features h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features ul {
  list-style: none;
  padding-left: 0;
}

.features li {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #dddddd;
}

.features li::before {
  content: "•";
  margin-right: 0.5rem;
  color: #a78bfa; /* Subtle purple tone for elegance */
}

/* Footer */
.footer {
  background: #0f0f0f;
  text-align: center;
  padding: 2rem 1rem;
  color: #666666;
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer p:hover {
  color: #a78bfa; /* Highlights footer with subtle purple glow */
}
