/* About page specific styles */

.project-overview {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.team-member {
  flex: 1 1 calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
}

.profile-image {
  width: 100%;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 200px;
  height: 200px;
  background-color: #333;
  border: 2px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  border-radius: 50%;
}

.profile-content {
  width: 100%;
}

.profile-content h2 {
  margin-bottom: 0.5rem;
  color: #4CAF50;
}

.profile-content h3 {
  margin-bottom: 1rem;
  color: #888;
  font-size: 1rem;
  font-weight: normal;
}

.profile-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.profile-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.profile-content li {
  margin-bottom: 0.5rem;
}

.project-goals {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
  }

  .team-member {
    flex: 1 1 100%;
  }
}
