/* About section styles extracted from styles.css */

/* About section responsive layout */
.about-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-flex {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
  .about-img {
    margin-bottom: 0;
  }
}
.about-img {
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  width: 20rem;
  height: 24rem;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #6366f1;
}
.about-text {
  max-width: 600px;
  width: 100%;
} 