.download-files-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.download-file-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    border-radius: 8px;

    background: #f3f3f3;

    text-decoration: none;

    transition: all 0.25s ease;

    font-weight: 600;
}

.download-file-item:hover {
    background: #111;
    color: #fff;

    transform: translateY(-2px);
}

.download-icon {
    font-size: 18px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border: 1.5px solid #ff4d4f;
  border-radius: 10px;

  background: transparent;
  color: #ff4d4f;

  font-size: 16px;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.25s ease;
}

.download-btn .icon {
  width: 18px;
  height: 18px;
  fill: #ff4d4f;
}

.download-btn:hover {
  background: #ff4d4f;
  color: #fff;
  box-shadow: 0 6px 15px rgba(255, 77, 79, 0.25);
}

.download-btn:hover .icon {
  fill: #fff;
}