.about-homepage {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 768px){
  .about-text h2 {
    text-align: center;
  }
}