.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  gap: 40px;
}

.text-column {
  flex: 1 1 500px;
}

.text-column h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.image-column {
  flex: 1 1 400px;
  text-align: center;
}

.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .text-column,
  .image-column {
    flex: 1 1 100%;
  }

  .text-column h2 {
    font-size: 1.7rem;
  }

  .text-column p {
    font-size: 1rem;
  }
}
