body { margin: 0; font-family: Arial, sans-serif; background: #f9fafb; color: #333; padding-top: 20px; /* ensure content doesn't hide under fixed header */}
header { position: fixed; top: 0; width: 100%; background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 20px; flex-wrap: wrap;}

/* Mobile menu toggle setup */
#menu-toggle {
    display: none;
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    position:fixed;
    top:0px;
    right:20px;
  }


header h1 {
    font-size: 1.5em;
    margin: 0;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

nav a {   
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease; 
}

nav a:hover { color: #2563eb; }

main { padding-top: 80px; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; text-align: center; }
.section { padding: 80px 20px; }
.bg-light { background: #f3f4f6; }
footer { text-align: center; padding: 40px 20px; font-size: 14px; color: #777; }


.card p {font-family: Arial, sans-serif; color: #333; font-size: 18px; line-height:1.2em; }

.btn { display: inline-block; background: #2563eb; color: #fff; padding: 10px 20px; border: none; border-radius: 4px; text-decoration: none; }
p {font-family: Arial, sans-serif; color: #333; font-size: 22px; line-height:1.5em; }



.form-group { text-align: left; margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; font-weight: bold; }
input, textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-family: Arial, sans-serif }
button.btn { margin-top: 10px; cursor: pointer; }
#contact-form {padding: 30px 20%;}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .imgHolder {
    width: 160px;
    height: auto;
    margin-bottom: 15px;
  }

  .imgHolder img {
    width: 160px;
    height: 200px;
    border-radius: 15%;
  }

  .bio {
    width: 100%;
  }

  .card h3 {
    text-align: center;
    margin-bottom: 10px;
  }

    #contact-form {
      padding: 30px 10%;
    }

    /* Responsive behavior */
@media (max-width: 768px) {
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
  
    body{
        padding-top:200px;
    }
  
    .menu-icon {
      display: block;
      margin-top: 10px;
    }
  
    nav {
      display: none;
      flex-direction: column;
      width: 100%;
    }
  
    #menu-toggle:checked + .menu-icon + nav {
      display: flex;
    }
  
    nav a {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      width: 100%;
    }
  }
  