/* ===== Basic Styling ===== */
body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2 {
  color: #ffffff;
  text-align: center;
}

.intro-text {
  text-align: center;
  max-width: 700px;
  margin: auto;
  font-size: 1.1em;
  padding-top: 10px;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}




/* ===== Feature Grid ===== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-box {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.feature-box:hover {
  background-color: #292929;
  transform: translateY(-5px);
}

.feature-box h3 {
  color: #00ffff;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.feature-box p {
  font-size: 0.95em;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .brain-animation img {
    width: 80%;
  }
}
