#about {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

#about h1 {
  font-size: 2.5rem;
  color: #008080;
  text-align: center;
  margin-bottom: 30px;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

/* About Sections (Image + Text) */
.about-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-section img {
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-text {
  width: 50%;
}

.about-text h2 {
  color: #008080;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
  .about-section.reverse {
    flex-direction: column;
  }
  .about-section img, .about-text {
    width: 100%;
  }
}
