
.about-container {
    padding: 3rem;
    max-width: 1000px;
    margin: auto;
    font-family: "Poppins", Arial, sans-serif;
    color: #333;
    line-height: 1.8;
  }

  .about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #111;
  }

  .about-header p,
  .about-mission p,
  .about-vision p,
  .about-story p {
    font-size: 1.05rem;
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: #444;
  }

  .about-mission h2,
  .about-vision h2,
  .about-story h2,
  .about-team h2 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 2.5rem;
    color: #222;
  }

  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }

  @media (min-width: 600px) {
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .team-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .team-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .team-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .team-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
  }

  .team-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }