* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}


.about-container {
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.1rem;
  color: #666;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #4CAF50;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #444;
}

.about-text ul {
  list-style: disc;
  padding-left: 20px;
  color: #444;
}

.about-text li {
  margin-bottom: 10px;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    order: -1; /* Move image on top on mobile */
  }
}
