/* Main About Section */
.about-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Each Sub-section */
.about-section section {
  margin-bottom: 3rem;
  text-align: center;
}

.about-section h2 {
  color: #003366;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 1.5rem;
}

.value-item {
  background: #003366;
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.3s;
}

.value-item:hover {
  transform: scale(1.05);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 1.5rem auto;
}

.team-member {
  text-align: center;
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
  }
