#download + section {
  margin: 0 auto;
}

.edition-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
  list-style: none;
  padding: 0;
}

.edition-list li {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f9f9fb;
  border: 1px solid #e2e2e8;
  border-left: 5px solid #3498db;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.edition-list li:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transform: translateX(3px);
}

.edition-list img {
  width: 60px;
  height: auto;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.edition-list .edition-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  text-align: left;
}

.limitations-highlight {
  background: #fff8e1;
  border-left: 5px solid #f9a825;
  border-radius: 6px;
  padding: 1.2rem 1.8rem;
  margin: 2rem 100px 2.5rem 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.limitations-highlight h3 {
  margin-top: 0;
  color: #e65100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
}

.limitations-highlight h3::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.3rem;
}

.limitations-highlight ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  color: #5d4037;
  list-style-type: square;
}

.limitations-highlight ul li {
  margin-bottom: 0.4rem;
}

.limitations-highlight ul li strong {
  color: #bf360c;
}

.download-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  margin: 2rem 0;
  font-size: 0.95rem;
}

.download-table thead th {
  background: #2c3e50;
  color: white;
  font-weight: 600;
  padding: 0.9rem 0.8rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 2px solid #1e2b38;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.download-table tbody tr {
  transition: background-color 0.2s;
}

.download-table tbody tr:nth-child(even) {
  background-color: #f8f9fc;
}

.download-table tbody tr:hover {
  background-color: #eef1f7;
}

.download-table th,
.download-table td {
  padding: 0.8rem 0.6rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e3e8ef;
}

.download-table tbody th {
  font-weight: 600;
  color: #2c3e50;
  background-color: #f2f5fa;
  border-right: 1px solid #e3e8ef;
}

.download-table .version-link {
  font-weight: 600;
  color: #1565c0;
  text-decoration: none;
  border-bottom: 1px dotted #1565c0;
}

.download-table .version-link:hover {
  color: #0d47a1;
  border-bottom-style: solid;
}

.download-table .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: #f0f4ff;
  border-radius: 20px;
  color: #1565c0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.download-table .icon-link:hover {
  background: #1565c0;
  color: white;
}

.download-table .icon-link i {
  font-size: 0.95rem;
}

.download-note {
  font-size: 0.85rem;
  color: #555;
  background: #f7f9fc;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.download-note a {
  color: #1565c0;
  text-decoration: underline;
}

@media screen and (max-width: 736px) {
  .edition-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .edition-list img {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .download-table {
    font-size: 0.8rem;
  }

  .download-table .icon-link span {
    display: none;
  }

  .download-table .icon-link {
    padding: 0.35rem 0.5rem;
  }
}

#download h2 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
    text-align: left;
}

#download p {
    font-size: 1.2em;
    color: #555;
    text-align: left;
    margin-bottom: 2em;
}