/* Board Table */
.board-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border: 1px solid #ddd;
}

.board-table thead {
  background: #000;
  color: #fff;
}

.board-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

.board-table td {
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 15px;
  color: #333;
}

.board-table tbody tr {
  background: #fff;
}

.board-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.board-table tbody tr:hover {
  background: #f5f5f5;
}

/* Contact Footer */
.contact-footer {
  margin: 40px 0;
  font-size: 16px;
  color: #333;
}

.contact-footer a {
  color: #000;
  text-decoration: underline;
  transition: color 0.3s;
}

.contact-footer a:hover {
  color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .board-table {
    font-size: 14px;
  }
  
  .board-table th,
  .board-table td {
    padding: 0px;
  }
  
  /* Stack table on mobile if needed */
  .board-table tr {
    display: flex;
  }
  
  .board-table td, .board-table thead th{
    display: flex;
    text-align: left;
    width: 33.3333%;
  }
  
  .board-table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
}