/* Staffing Section Container */
.staffing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
}

/* Section Header */
.staffing-header h1 {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
  color: #333;
}


/* Featured Image */
.staffing-image {
  text-align: center;
  margin-bottom: 40px;
}

.staffing-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Staffing Section Layout */
.staffing-section {
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  position: relative;
  gap: 5%; /* Spacing between left and right columns */
  background-color: #fff;
}

/* Red Triangle */
.red-triangle {
   position: absolute;
  top: 50px;
  left: 4%; 
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0; 
  border-color: transparent #FF0000 transparent transparent; 
  transform: rotate(90deg);
}

/* Left Column */
.staffing-left {
   width: 40%;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    left: 6rem;
}

.staffing-left h2 {
  font-size: 2.3rem;
  font-weight: 400;
  color: #000000;
}

/* Right Column */
.staffing-right {
  width: 55%;
  color: #141414;
  font-size: 1.05rem;
  line-height: 1.6;

}

.staffing-right p {
  margin-bottom: 1rem;
}
/* Staffing Section Container */
.certificate-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
}

/* Section Header */
.certificate-header h1 {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

/* Featured Image */
.staffing-image {
  text-align: center;
  margin-bottom: 40px;
}

.staffing-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
 .points {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 2rem auto;  
  text-align: left;
}

.points li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  list-style: none; 
  position: relative;
  padding-left: 28px; 
}

.points li::before {
  content: "★";
  color: #faa200;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
/* ----------------------------
   Responsive Design
----------------------------- */

/* For tablets and smaller laptops */
@media (max-width: 992px) {
  .staffing-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    gap: 0;
  }

  .staffing-left {
    width: 100%;
    left: 0;
    justify-content: flex-start;
  }

  .staffing-left h2 {
    font-size: 2rem;
    text-align: left;
  }

  .staffing-right {
    width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .red-triangle {
    top: 0;
    left: 0;
    border-width: 0 40px 40px 0;
  }
}

/* For mobile devices */
@media (max-width: 600px) {
  .staffing-section {
    flex-direction: column;
    padding: 0;
   gap: 0;
    margin: 0;
}

  .staffing-left {
    width: 100%;
    left: 0;
    text-align: left;
  }

  .staffing-left h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 0;
  }

  .staffing-right {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .red-triangle {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 0;
    border-width: 0 35px 35px 0;
  }

  .points {
    margin: 1.5rem 0;
    padding: 0;
  }

  .points li {
    font-size: 0.95rem;
    padding-left: 24px;
  }
}
