/* Main Container */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Content Section Styling */
.content {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 1.6;
  max-width: 100%;
}

/* Headings */
.content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #004080;
  border-left: 6px solid #004080;
  padding-left: 15px;
}

.content h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0066cc;
}

/* Paragraphs */
.content p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Lists */
.content ul,
.content ol {
  margin: 10px 0 20px 25px;
  padding-left: 0;
}

.content ul {
  list-style-type: disc;
}

.content ol {
  list-style-type: decimal;
}

.content ul li,
.content ol li {
  margin-bottom: 10px;
}

/* Custom Bullet Style (optional for officer list) */
.content ul li::marker {
  color: #004080;
}

/* Links */
.content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.content a:hover {
  text-decoration: underline;
}

/* Officer Cards Grid */
.officer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

/* Individual Card Styling */
.officer-cards .card {
  background: linear-gradient(to bottom right, #f0f4f8, #ffffff);
  border: 1px solid #dce3ea;
  border-left: 5px solid #004080;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.officer-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Card Title */
.officer-cards h4 {
  margin-top: 0;
  font-size: 20px;
  color: #003366;
  border-bottom: 1px solid #cfd9e3;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* Card Text */
.officer-cards p {
  margin: 8px 0;
  font-size: 15.5px;
  color: #333;
}

/* Highlight Labels */
.officer-cards p strong {
  color: #004080;
}

/* Email / Link Styling */
.officer-cards a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.officer-cards a:hover {
  color: #003366;
  text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .officer-cards {
    gap: 15px;
  }

  .officer-cards .card {
    padding: 18px;
  }

  .officer-cards h4 {
    font-size: 18px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
    padding: 20px;
  }

  .content h2 {
    font-size: 24px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p,
  .content li {
    font-size: 15px;
  }
}
