/* About Section Styles - Professional, No Hover */
section {
  background: linear-gradient(120deg, #fffbe6 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(34, 34, 34, 0.10), 0 2px 12px rgba(255, 215, 0, 0.10);
  padding: 3.5rem 2.5rem;
  margin: 3rem auto;
  max-width: 950px;
  border: 2.5px solid #ffe066;
  position: relative;
  font-family: 'Arial', sans-serif;
  color: #333;
  overflow: hidden;
  animation: fadeInAbout 1.2s cubic-bezier(.4,2,.3,1);
}
section::after {
  content: "";
  position: absolute;
  top: 18px; left: 18px; right: 18px; bottom: 18px;
  border-radius: 18px;
  border: 1.5px dashed #d4af37;
  pointer-events: none;
  opacity: 0.13;
}
@keyframes fadeInAbout {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section h2, section h3 {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #ffe06644;
  position: relative;
}
section h2::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffe066 0%, #d4af37 100%);
  margin: 0 auto 18px auto;
  border-radius: 2px;
  opacity: 0.7;
}
section p {
  color: #444;
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.2px;
  opacity: 0.96;
  position: relative;
}
@media (max-width: 600px) {
  section {
    padding: 1.2rem 0.5rem;
    border-radius: 10px;
  }
  section h2, section h3 {
    font-size: 1.3rem;
  }
  section p {
    font-size: 1rem;
  }
}
