/* DRONGER 1.4 STANDARD STYLES WITH WCAG 4.5:1 COLOR CONTRAST COMPLIANCE */

/* WCAG Compliant Color Palette */
:root {
  --primary-blue: #003366;
  --primary-blue-dark: #002244;
  --link-color: #0044cc;
  --link-hover: #003399;
  --text-dark: #222222;
  --text-medium: #444444;
  --text-light: #666666;
  --background-white: #ffffff;
  --background-light: #f8f9fa;
  --background-hover: #e9ecef;
  --border-color: #cccccc;
  --focus-outline: #0066cc;
  --table-header-bg: #f0f4f8;
  --table-border: #dddddd;
}

/* Document Section Styles */
.document-section {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--background-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-blue-dark);
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 10px;
  font-weight: bold;
}

.section-subtitle {
  text-align: justify;
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Table Styles */
.who-table,
.officers-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.95em;
}

.who-table th,
.officers-table th {
  background-color: var(--table-header-bg);
  color: var(--primary-blue-dark);
  font-weight: bold;
  text-align: left;
  padding: 12px 8px;
  border: 1px solid var(--table-border);
}

.who-table td,
.officers-table td {
  padding: 12px 8px;
  border: 1px solid var(--table-border);
  vertical-align: top;
  line-height: 1.5;
}

.who-table img,
.officers-table img {
  max-width: 100px;
  height: auto;
  border-radius: 4px;
}

/* Link Styles */
a[href^="mailto:"] {
  color: var(--link-color);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 3px;
}

a[href^="mailto:"]:hover,
a[href^="mailto:"]:focus {
