/* Общий контейнер */
.documents-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Заголовки разделов */
.documents-container h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
  border-left: 4px solid #ffb300;
  padding-left: 10px;
}

/* Карточка документа */
.document-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Название документа */
.document-card h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
}

/* Кнопка скачать */
.document-card .download-btn {
  background-color: #ffb300;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  width: 25%;
}

.document-card .download-btn:hover {
  background-color: #e0a000;
  text-decoration: none;
  color: #fff;
}
