/* MAIN SECTION */
.chairman-section {
  font-family: 'Poppins', sans-serif;
}

/* RED TITLE BAR */
.chairman-title-bar {
  background: #0a1c48;
  padding: 60px 20px;
  text-align: center;
}

.chairman-title-bar h1 {
  font-size: 40px;
  color: white;
  font-weight: 600;
}

/* MAIN CONTENT AREA */
.chairman-container {
  max-width: 1350px;
  padding: 60px 30px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* LEFT SIDE IMAGE */
.chairman-left {
  width: 40%;
}

.img-border {
  border: 10px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 0;
  /* width: fit-content; */
}

.img-border img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

/* RIGHT SIDE CONTENT */
.chairman-right {
  width: 60%;
}

.sub-title {
  text-transform: lowercase;
  color: #777;
  font-size: 14px;
}

.chairman-right h2 {
  font-size: 32px;
  color: #20468b;
  margin: 10px 0 20px;
  font-weight: 700;
}

.chairman-right p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.chairman-right h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
}

.chairman-right ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.chairman-right ul li {
  margin-bottom: 8px;
}

.italic-text {
  font-style: italic;
  color: #666;
  line-height: 1.7;
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
  .chairman-container {
    flex-direction: column;
    text-align: center;
  }

  .chairman-left, .chairman-right {
    width: 100%;
  }

  .img-border {
    margin: auto;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .chairman-title-bar h1 {
    font-size: 28px;
  }

  .chairman-container {
    padding: 30px 15px;
  }

  .chairman-right h2 {
    font-size: 26px;
  }

  .chairman-right p,
  .chairman-right li {
    font-size: 15px;
  }
}
