.about-section {
  padding: 8rem 2rem 4rem;
  min-height: calc(100vh - 80px);
  /* Subtract footer height approx */
  background: linear-gradient(135deg,
      rgba(0, 255, 255, 0.05) 0%,
      rgba(255, 0, 255, 0.05) 100%),
    #0a0a0f;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.about-container h1 {
  font-family: "Orbitron", sans-serif;
  color: #00ffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.about-content h2 {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-content h3 {
  color: #00ffff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about-content p {
  color: #d0d0d0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.about-content ul {
  list-style: disc;
  margin-left: 2rem;
  color: #d0d0d0;
  margin-bottom: 1rem;
}

.about-content li {
  margin-bottom: 0.5rem;
}

.about-content a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-content a:hover {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  text-decoration: underline;
}

/* RTL Support */
[dir="rtl"] .about-content ul {
  margin-left: 0;
  margin-right: 2rem;
}