
/* ===============================
   Governing Body Styles
=================================*/
body {
  font-family: "Roboto", sans-serif;
  background: #0b1a4a;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  color: #fff;
}

.section-wrapper {
  padding: 50px 20px;
}

.section-container {
  width: 80%;
  margin: 0 auto;
  background: #f4f6fb;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #0b1a4a;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff5722;
  margin: 10px auto 0;
  border-radius: 3px;
}

.governing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.governing-card {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.governing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.governing-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background: #1976d2;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}

.governing-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}
