/* Reset basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set dark background and base text styling */
body {
  background-color: #000;
  color: #e0e0e0; /* Light gray for body text instead of pure white */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  height: 100vh;
}

/* Canvas for animated background */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
}

/* Flex container for vertical layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
  text-align: center;
}

/* Header with fade-in animations */
.header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
  color: #1e90ff; /* Accent blue for main header */
}

.header p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1.5s 0.5s forwards;
  color: #ccc; /* A slightly muted white for the subheader */
}

/* "Why Choose Us" Section */
.why-us {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  text-align: left;
  opacity: 0;
  animation: fadeIn 1.5s 0.5s forwards;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1e90ff; /* Accent blue for subheadings */
}

.why-us p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #ccc; /* Muted text color for paragraphs */
}

.why-us ul {
  list-style: disc inside;
  margin-left: 20px;
  color: #ccc; /* Ensure bullet text uses the same muted tone */
}

.why-us li {
  margin-bottom: 1rem;
  color: #ccc;
}

/* Main content area (Get Started button) */
.content {
  margin: 20px 0;
}

/* Button with slide-up animation and hover effect */
.btn {
  background-color: #1e90ff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s 1s forwards;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #63b3ed;
}

/* Footer styling; pushed to the bottom with margin-top: auto */
.footer {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: auto;
  color: #777; /* A softer gray for the footer text */
}

/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
