/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.5;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
  }
  
  header h1 {
    font-size: 22px;
    font-weight: bold;
  }
  
  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }
  
  nav a:hover {
    color: #FFD700;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 20px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .hero form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 280px;
    max-width: 100%;
    font-size: 16px;
  }
  
  button {
    margin-top: 12px;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: #000;
    color: #fff;
    cursor: pointer;
  }
  
  button:hover {
    background: #FFD700;
    color: #000;
  }
  
  /* Team Page */
/* Team Page Specific */
.team {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first */
    gap: 40px;
    padding: 100px 20px 60px 20px; /* Increased top padding */
    max-width: 1000px;
    margin: auto;
  }  
  
  .team-member {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .team-member:hover {
    transform: translateY(-5px);
  }
  
  .team-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .team-member h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .team-member p.role {
    font-weight: 500;
    color: #000000; /* black accent for role */
    margin-bottom: 12px;
  }
  
  .team-member p.bio {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
  }
  
  /* Tablet + Desktop */
  @media (min-width: 600px) {
    .team {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 900px) {
    .team {
      grid-template-columns: repeat(2, 1fr); /* still 2 for 2 members */
    }
  }
  
  