body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
}

.downloads-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  font-size: 32px;
}

.subtitle {
  color: #555;
  margin-bottom: 40px;
}

h2 {
  margin-top: 50px;
  color: #1a2a4f;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.doc-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.doc-card h3 {
  margin-top: 0;
}

.doc-card p {
  color: #666;
  font-size: 14px;
}

.actions {
  margin-top: 15px;
}

.actions a,
.actions button {
  display: inline-block;
  margin-right: 8px;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: #1a2a4f;
  color: white;
}

.actions a:hover,
.actions button:hover {
  background: #0f1b36;
}

.restricted {
  border-left: 4px solid #c0392b;
}
