/* ===== CONTAINER (ƏSAS FIX) ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== NAV ===== */
.navigationNav {
  background-color: #f5f5f5;
  padding: 15px 30px;
  margin: 15px 0;
  color: #777;
}

.navigation a {
  color: #337ab7;
  text-decoration: none;
}

/* ===== MAIN LAYOUT ===== */
.DepartmentsAbout {
  display: flex;
  gap: 40px;
  padding: 0 20px 40px;
  align-items: flex-start;
}

/* ===== LEFT CARD ===== */
.LeadershipContent {
  width: 280px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  position: sticky;
  top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.LeadershipContent img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.LeadershipContent p {
  margin-bottom: 15px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #333;
}

.LeadershipContent strong {
  display: block;
  font-size: 12.5px;
  color: #6b7280;
  margin-bottom: 3px;
}

/* ===== RIGHT CONTENT ===== */
.about {
  flex: 1;
  max-width: 700px;
  background: #ffffff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #111827;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 8px;
}

.about p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .DepartmentsAbout {
    gap: 25px;
    padding: 0 15px 30px;
  }

  .LeadershipContent {
    width: 240px;
    padding: 18px;
  }

  .about {
    padding: 20px;
  }

  .about h3 {
    font-size: 18px;
  }

  .about p {
    font-size: 14.5px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .navigationNav {
    padding: 10px 15px;
    font-size: 13px;
  }

  .DepartmentsAbout {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px 25px;
  }

  .LeadershipContent {
    width: 100%;
    position: static;
    text-align: center;
  }

  .LeadershipContent img {
    width: 140px;
    margin: 0 auto 10px;
    display: block;
  }

  .about {
    max-width: 100%;
    padding: 18px;
  }

  .about h3 {
    font-size: 17px;
  }

  .about p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
}
