/* General */

* .section-title {
  text-align: center;
  color: #0a7c3d;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-line {
  width: 80px;
  height: 4px;
  background: #f1b209;
  margin: 0 auto 30px;
  border-radius: 20px;
}

.container-card {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Correspondent Section */
.profile-section {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.profile-content p {
  margin-bottom: 24px;
  line-height: 1.9;
  text-align: justify;
  font-size: 16px;
  color: #555;
}

.profile-image {
  width: 100%;
  border-radius: 15px;
  border: 5px solid #f1b209;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.profile-name {
  text-align: center;
  color: #0a7c3d;
  margin-top: 15px;
}

.profile-designation {
  text-align: center;
  color: #777;
}

/* Cards */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.staff-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.staff-card:hover {
  transform: translateY(-5px);
}

.staff-card img {
  width: 100%;
  height: auto;
  display: block;
}

.staff-card {
  text-align: center;
}

.staff-card h4,
.staff-card p {
  text-align: center;
}

.staff-card h4 {
  margin: 10px 0 5px;
  color: #0a7c3d;
}

.staff-card p {
  color: #666;
  margin: 0;
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.staff-table th {
  background: #0a7c3d;
  color: #fff;
  padding: 14px;
}

.staff-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.staff-table tr:hover {
  background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
