.about-section {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

.about-text {
  flex: 1 1 50%;
  font-size: 1.1rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-in;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 140%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}