.about-hero {
  padding: 160px 5% 100px;
  text-align: center;
  background: linear-gradient(135deg, #0a0e17 0%, #111827 100%);
}

.about-hero h1 {
  font-size: 4.5rem;
  font-family: 'Cinzel Decorative', cursive;
  color: #d4af37;
}

.about-content {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.about-text p.visible { opacity: 1; transform: translateY(0); }

.credentials ul {
  list-style: none;
  margin-top: 1rem;
}

.credentials li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  font-style: italic;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  border: 4px solid #d4af37;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

@media (max-width: 968px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-hero h1 { font-size: 3.5rem; }
}

