/* abouts */
.about-container {
  max-width: 1300px;
  margin: 40px auto;
  padding: 20px 10;
  background-color: #fff;
}

.about-header {
  text-align: center;
  padding: 20px;
}

.about-header h1 {
  color: #4caf50;
  margin-bottom: 10px;
  font-size: 36px;
}

.about-header p {
  font-size: 18px;
  color: #666;
}

.about-content {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

.about-content img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #4caf50;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-content img {
    max-width: 300px;
  }
  .about-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 28px;
  }
  .about-header p {
    font-size: 16px;
  }
  .about-text p {
    font-size: 14px;
  }
}
