
/* Management section */
.management-member {
  display: flex;
  margin-bottom: 1.5rem;
  gap: 1rem;
  align-items: flex-start;
}

.management-member img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.management-member .bio {
  flex: 1;
}

.management-member h3 {
  margin: 0 0 0.5rem 0;
  color: #111;
}

.management-member p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Legal documents list */
.legal-list {
  list-style: none;
  padding-left: 0;
}

.legal-list li {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1rem;
}

.legal-list strong {
  color: #111;
}
/* Vertical stacked cards */
.cards {
  display: block;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  border-bottom: 2px solid #444;
  padding-bottom: 0.3rem;
}

.card p, .card li {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.container {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

body {
  background-color: #2A2A2A; /* black page background */
  color: #eee; /* light text for contrast */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
/* Responsive */
@media (max-width: 600px) {
  .management-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .management-member img {
    margin-bottom: 1rem;
    width: 150px;
    height: auto;
  }
}
.legal-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.legal-card {
  background-color: #f8f8f8; /* off-white card bg */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem 1.5rem;
  color: #222;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.legal-card-header {
  background-color: #6fb8d2; /* soft blue */
  color: #000;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: 8px 8px 0 0;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -1rem -1.5rem 1rem -1.5rem;
}

.legal-card-header strong {
  font-weight: 900;
}

.legal-card-content p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
