.about-section{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  gap: 40px;
}
.about-text{
  flex: 1;
}
.about-text h2{
  font-size: 32px;
  margin-bottom: 21px;
}
.about-text h3{
  font-size: 20px;
  color: white;
  margin-bottom: 22px;
}
.about-text p{
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.about-text a{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.social-icons a{
  margin-right: 10px;
  text-decoration: none;
  font-size: 20px;
}
.about-image{
  flex: 1;
  text-align: center;
}

.about-image img{
  width: 100%;
  max-width: 750px;
  border-radius: 8px;
}
@media (max-width: 768px) {
.about-section {
  flex-direction: column;
  text-align: center;
}

.about-text {
  text-align: left;
  margin: 0;
  padding: 0;
  order: 2;
  }

.about-image {
  order: 1;
  }
}