.about-section {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: transparent;
  width: 100%;

}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center; /* <-- Ensures horizontal centering */
  gap: 3rem;
  max-width: 1000px;
  flex-wrap: wrap;
  text-align: center; /* Optional: makes text centered when stacked */
  width: 100%;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }
}

.about-container img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6))
          drop-shadow(0 0 20px rgba(179, 136, 255, 0.4))
          drop-shadow(0 0 30px rgba(179, 136, 255, 0.2));
  flex-shrink: 1;
  min-width: 180px;
}

.about-text {
  max-width: 600px;
  min-width: 300px; /* <-- prevent premature wrapping */
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: Helvetica, sans-serif;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.inline-link {
  color: #b388ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.inline-link:hover {
  color: #d6b3ff;
  text-shadow: 0 0 8px #b388ff;
}

