body {
    font-family: "Raleway", "Segoe UI", sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
  }
  
  /* Container for Staff Section */
#page-staff {
    padding: 20px 50px;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Headers for Staff Section */
  #page-staff h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
  }
  
  #page-staff h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #62b22f;
    padding-bottom: 5px;
  }
  
/* Styling the About Us Section */
.about-us {
    padding: 0;
    margin-bottom: 30px;
    border-radius: 8px;
    line-height: 1.6;
}

#about-us-h2 {
    font-size: 30rem;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    text-align: start;
}

.about-us p {
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 500;
    font-size: 1.125rem;  
    line-height: 1.6;
    color: rgb(33, 37, 41);
}

#intext_logo {
    height: 80px;
}

.about-us p::first-letter {
    font-size: 28px;
    font-weight: bold;
    color: #62b22f;
}

.about-us a {
    color: #62b22f;
    text-decoration: none;
    font-weight: 600;
}

.about-us a:hover {
    text-decoration: underline;
}

/* Add responsiveness for About Us section */
@media (max-width: 768px) {
    #intext_logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    #intext_logo {
        height: 35px;
    }
    

    .about-us h2 {
        font-size: 2rem; 
    }

    .about-us p {
        font-size: 1.2rem; 
    }
}


  /* Styling the Leaders List */
  #page-staff ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
  }
  
  #page-staff ul li {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  /* Bold the Titles */
  #page-staff strong {
    font-weight: 700;
    color: #333;
  }
  
  /* Text Links Styling */
  #page-staff a {
    color: #62b22f;
    text-decoration: none;
  }
  
  #page-staff a:hover {
    text-decoration: underline;
  }
  
  /* Add Icons for Project Heads and Workshop Leaders */
  #page-staff li::before {
    content: "•";
    color: #62b22f;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  
  #page-staff h3::before {
    content: "🧑‍🏫 ";
  }
  
  /* Highlight Project Heads Section */
  #page-staff .project-heads {
    margin-bottom: 20px;
  }
  
  #page-staff .project-heads li {
    margin-bottom: 8px;
  }
  
  /* Workshop Leaders Section Styling */
  #page-staff .workshop-leaders {
    margin-top: 25px;
  }
  
  #page-staff .workshop-leaders li {
    margin-bottom: 12px;
  }
  
  /* Add Media Query for Better Mobile Responsiveness */
  @media (max-width: 768px) {
    #page-staff h2 {
        font-size: 24px;
    }
  
    #page-staff h3 {
        font-size: 20px;
    }
  
    #page-staff ul li {
        font-size: 14px;
    }
  }

  #logo {
    margin-top: 20px !important;
  }