.downloads-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #eee;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}
.tab-btn.active,
.tab-btn:hover {
  background-color: #ff6600;
  color: #fff;
}
.tab-content {
  display: none;
  width: 100%;
}
.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}
.responsive-table {
  overflow-x: auto;
  width: 100%;
}
.download-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  min-width: 300px;
}
.download-table thead th {
  text-align: left;
  padding: 12px;
  background-color: #f8f8f8;
  border-bottom: 2px solid #ccc;
}
.download-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  word-break: break-word;
}
.download-table a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.2s;
}
.download-table a:hover {
  color: #005fa3;
}
.note {
  font-size: 14px;
  color: #666;
  text-align: center;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}