/* About Page Styles */

.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0d1117 0%, #1a222e 100%);
  color: #f0f6fc;
  min-height: 100vh;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Aldrich", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.about-title {
  font-size: 3rem;
  color: #00ffcc;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #00ffccbb;
  animation: glowText 2.5s ease-in-out infinite alternate;
}

.about-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
  text-align: center;
  color: #a0f0e5cc;
}

.about-mission,
.about-values,
.about-team,
.about-contact {
  background: #161b22;
  border-radius: 20px;
  padding: 30px 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 25px #00ffcc33;
  transition: box-shadow 0.3s ease;
}

.about-mission h2,
.about-values h2,
.about-team h2,
.about-contact h2 {
  color: #00ffcc;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 18px;
  text-shadow: 0 0 12px #00ffccaa;
}

.about-mission p,
.about-values ul,
.about-team p,
.about-contact p {
  color: #a0f0e5cc;
  font-size: 1rem;
  line-height: 1.5;
}

.about-values ul {
  list-style-type: disc;
  margin-left: 20px;
}

.about-values ul li {
  margin-bottom: 10px;
}

.about-contact a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.about-contact a:hover {
  color: #0ee6b7;
  text-decoration: underline;
}

/* Glow Text Animation */
@keyframes glowText {
  0% {
    text-shadow: 0 0 8px #00ffccbb, 0 0 20px #00ffcc88;
  }
  100% {
    text-shadow: 0 0 20px #00ffccdd, 0 0 45px #00ffcccc;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.4rem;
  }

  .about-intro {
    font-size: 1rem;
  }

  .about-mission,
  .about-values,
  .about-team,
  .about-contact {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 0.95rem;
  }

  .about-mission,
  .about-values,
  .about-team,
  .about-contact {
    padding: 20px 15px;
  }
}
