.about-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* so it stacks on smaller screens */
}

.about-image img {
  width: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top:20px;
}

.about-text {
  flex: 1;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.about-text h1 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  text-align: left;
}
.about-text p {
  font-size: 14px;
}
.button {
  background-color: #000;
  margin-right: 10px;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.black-button:hover {
  background-color: #333;
}
