html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #0f0c29; /* Deep cyberpunk purple */
  color: #fff;
  font-family: 'Orbitron', sans-serif;
}

.about-section {
  background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
  color: #fff;
  padding: 80px 20px;
  font-family: 'Orbitron', sans-serif;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-container h2 {
  font-size: 3rem;
  color: #ff00c8;
  text-shadow: 0 0 10px #ff00c8;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.5rem;
  color: #00ffe7;
  margin-bottom: 40px;
  text-shadow: 0 0 8px #00ffe7;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.highlight {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ff00c8;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 0 15px #ff00c8;
  transition: transform 0.3s ease;
}

.highlight:hover {
  transform: scale(1.05);
}

.highlight h3 {
  color: #ff00c8;
  margin-bottom: 10px;
}

.highlight p {
  color: #ccc;
  font-size: 1rem;
}
.logo-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.logo-container img {
  width: 150px;
  height: auto;
}
.logo-container img {
  filter: drop-shadow(0 0 6px #ff00c8);
}