.holding-documents {
  max-width: 900px;
  margin: 40px auto;
  font-family: 'Helvetica Neue', sans-serif;
color: #2e5fa4;
}

.holding-documents h2 {
  font-size: 1.4rem;  /* ~22px */
  margin-bottom: 10px;
}

.holding-documents p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f7f7f7;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.document-item:hover {
  background-color: #e6e6e6;
}

.doc-icon {
  width: 30px;
  height: 30px;
}

.doc-link {
  margin-left: auto;
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}

.doc-link:hover {
  text-decoration: underline;
}
