/* --------- About Page Specific Styles --------- */

.about-hero {
    background: #f4f7fb;
    padding: 100px 40px;
    text-align: center;
  }
  
  .about-hero h1 {
    font-size: 2.6rem;
    color: #222;
    margin-bottom: 12px;
  }
  
  .about-hero p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .founders {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 40px;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .founder-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .founder-card:hover {
    transform: translateY(-6px);
  }
  
  .founder-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .founder-card h3 {
    font-size: 1.4rem;
    color: #007bff;
    margin-bottom: 6px;
  }
  
  .role {
    font-weight: 600;
    font-size: 1rem;
    color: #444;
    margin-bottom: 14px;
  }
  
  .bio {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
  }
  