.documents-container {
  padding: 2rem 1rem;
}

.document-category {
  margin-bottom: 2rem;
}

.document-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--brand-color);
}

.documents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-item {
  margin-bottom: 1rem;
}

.document-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.document-link:hover {
  background: #e9ecef;
  text-decoration: none;
  color: inherit;
}

.document-link-text {
  flex: 1;
  margin: 0 1rem;
  font-size: 0.95rem;
}

.document-link .btn {
  white-space: nowrap;
  padding: 0.5rem 1rem;
}

.document-link.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .documents-container {
    padding: 1rem 0.5rem;
  }

  .document-title {
    font-size: 1.25rem;
  }

  .document-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .document-link i {
    font-size: 1.5rem !important;
  }

  .document-link-text {
    margin: 0;
    width: 100%;
  }

  .document-link .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-page {
    padding: 1rem;
  }

  .hero-page h1 {
    font-size: 1.75rem !important;
  }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .documents-container {
    padding: 1.5rem;
  }

  .document-link {
    padding: 0.75rem;
  }
}
